Fix typos and formatting in the dhcp protocol docs

Also added a link to an RFC and a Bro script (and corrected the name of the
script being referenced).
This commit is contained in:
Daniel Thayer 2013-10-15 16:19:06 -05:00
parent f0f1918954
commit e36fcf0190
3 changed files with 9 additions and 8 deletions

View file

@ -3,11 +3,11 @@
module DHCP;
export {
## Reverse the octets of an IPv4 IP.
## Reverse the octets of an IPv4 address.
##
## ip: An :bro:type:`addr` IPv4 address.
## ip: An IPv4 address.
##
## Returns: A reversed addr.
## Returns: A reversed IPv4 address.
global reverse_ip: function(ip: addr): addr;
}