diff --git a/nselib/dhcp6.lua b/nselib/dhcp6.lua index ef2bab078..c8e84b86f 100644 --- a/nselib/dhcp6.lua +++ b/nselib/dhcp6.lua @@ -1,6 +1,7 @@ --- --- Minimalistic DHCP6 implementation supporting basic DHCP6 Solicit requests --- The library is structured around the following classes: +-- Minimalistic DHCP6 (Dynamic Host Configuration Protocol for IPv6) +-- implementation supporting basic DHCP6 Solicit requests The library +-- is structured around the following classes: -- * DHCP6.Option - DHCP6 options encoders (for requests) and decoders -- (for responses) -- * DHCP6.Request - DHCP6 request encoder and decoder diff --git a/nselib/eap.lua b/nselib/eap.lua index 7d89fbb0d..68325de7a 100644 --- a/nselib/eap.lua +++ b/nselib/eap.lua @@ -1,5 +1,6 @@ --- --- EAP library supporting a limited subset of features. +-- EAP (Extensible Authentication Protocol) library supporting a +-- limited subset of features. -- -- The library was designed and tested against hostapd v0.6.10 -- The EAP protocol names are the ones specified in: diff --git a/nselib/iax2.lua b/nselib/iax2.lua index 4c5c9ee4b..2c0ccf56d 100644 --- a/nselib/iax2.lua +++ b/nselib/iax2.lua @@ -1,5 +1,5 @@ --- --- A minimalistic Asterisk IAX2 implementation. +-- A minimalistic Asterisk IAX2 (Inter-Asterisk eXchange v2) VoIP protocol implementation. -- The library implements the minimum needed to perform brute force password guessing. -- -- @author "Patrik Karlsson " diff --git a/nselib/ndmp.lua b/nselib/ndmp.lua index 128677e83..41ff7f3b4 100644 --- a/nselib/ndmp.lua +++ b/nselib/ndmp.lua @@ -1,5 +1,5 @@ --- --- A minimalistic ndmp library +-- A minimalistic NDMP (Network Data Management Protocol) library -- -- @author Patrik Karlsson -- diff --git a/nselib/pppoe.lua b/nselib/pppoe.lua index fdab4acbe..acec7cd78 100644 --- a/nselib/pppoe.lua +++ b/nselib/pppoe.lua @@ -1,4 +1,5 @@ ---- A minimalistic PPPoE library, implementing basic support for PPPoE +--- A minimalistic PPPoE (Point-to-point protocol over Ethernet) +-- library, implementing basic support for PPPoE -- Discovery and Configuration requests. The PPPoE protocol is ethernet based -- and hence does not use any IPs or port numbers. -- diff --git a/nselib/redis.lua b/nselib/redis.lua index 795602f6f..4dab5bf09 100644 --- a/nselib/redis.lua +++ b/nselib/redis.lua @@ -1,5 +1,6 @@ - - +--- A minimalistic Redis (in-memory key-value data store) library. +-- +-- @author "Patrik Karlsson " module(... or "redis", package.seeall) diff --git a/nselib/rsync.lua b/nselib/rsync.lua index 4e20248a8..fa48d67c3 100644 --- a/nselib/rsync.lua +++ b/nselib/rsync.lua @@ -1,6 +1,7 @@ --- --- A minimalist RSYNC library +-- A minimalist RSYNC (remote file sync) library -- +-- @author "Patrik Karlsson " module(... or "rsync",package.seeall) diff --git a/nselib/socks.lua b/nselib/socks.lua index 3bdc2d1c3..ba579fad1 100644 --- a/nselib/socks.lua +++ b/nselib/socks.lua @@ -1,5 +1,5 @@ --- --- A smallish SOCKS version 5 implementation +-- A smallish SOCKS version 5 proxy protocol implementation -- -- @author "Patrik Karlsson " -- diff --git a/nselib/sslcert.lua b/nselib/sslcert.lua index abb596686..2e3c0f4b5 100644 --- a/nselib/sslcert.lua +++ b/nselib/sslcert.lua @@ -6,6 +6,7 @@ -- ssl-cert script in an effort to allow certs to be cached and shared among -- other scripts. -- +-- @author "Patrik Karlsson " module(... or "sslcert", package.seeall) diff --git a/nselib/xdmcp.lua b/nselib/xdmcp.lua index 1687b5724..b12173b47 100644 --- a/nselib/xdmcp.lua +++ b/nselib/xdmcp.lua @@ -1,5 +1,5 @@ --- --- Implementation of the XDMCP X-Windows protocol based on: +-- Implementation of the XDMCP (X Display Manager Control Protocol) based on: -- x http://www.xfree86.org/current/xdmcp.pdf -- -- @author "Patrik Karlsson "