don't export ConnectAttempt and AcceptAttempt
This commit is contained in:
parent
99912b4b69
commit
1b47048aad
|
@ -15,14 +15,14 @@ var IP_TTL {.importc: "IP_TTL", header: "<netinet/in.h>".}: cint
|
||||||
const Timeout = 3000
|
const Timeout = 3000
|
||||||
|
|
||||||
type
|
type
|
||||||
ConnectAttempt* = ref object
|
ConnectAttempt = ref object
|
||||||
srcIp: IpAddress
|
srcIp: IpAddress
|
||||||
srcPort: Port
|
srcPort: Port
|
||||||
dstIp: IpAddress
|
dstIp: IpAddress
|
||||||
dstPorts: seq[Port]
|
dstPorts: seq[Port]
|
||||||
firewallRules: seq[string]
|
firewallRules: seq[string]
|
||||||
|
|
||||||
AcceptAttempt* = ref object
|
AcceptAttempt = ref object
|
||||||
srcIp: IpAddress
|
srcIp: IpAddress
|
||||||
srcPort: Port
|
srcPort: Port
|
||||||
dstIp: IpAddress
|
dstIp: IpAddress
|
||||||
|
|
Loading…
Reference in New Issue