mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 18:48:20 +00:00
Fixing typo
This commit is contained in:
parent
08683175c1
commit
2c439fd0a2
1 changed files with 2 additions and 2 deletions
|
@ -7,10 +7,10 @@ class IPAddr
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
/// Address family.
|
/// Address family.
|
||||||
enum { IPv4, IPv6 } Family;
|
enum Family { IPv4, IPv6 };
|
||||||
|
|
||||||
/// Byte order.
|
/// Byte order.
|
||||||
enum { Host, Network } ByteOrder;
|
enum ByteOrder { Host, Network };
|
||||||
|
|
||||||
/// Constructs an address instance from an IPv4 address.
|
/// Constructs an address instance from an IPv4 address.
|
||||||
///
|
///
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue