mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-22 15:50:59 -05:00
doc fixup.
git-svn-id: file:///svn/unbound/trunk@26 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
30ad5a1a52
commit
df792cc3af
1 changed files with 6 additions and 3 deletions
|
|
@ -69,9 +69,12 @@ struct comm_point {
|
||||||
|
|
||||||
/** is this a UDP, TCP-accept or TCP socket. */
|
/** is this a UDP, TCP-accept or TCP socket. */
|
||||||
enum comm_point_type {
|
enum comm_point_type {
|
||||||
comm_udp, /** UDP socket */
|
/** UDP socket - handle datagrams. */
|
||||||
comm_tcp_accept, /** TCP accept socket */
|
comm_udp,
|
||||||
comm_tcp /** TCP handler socket */
|
/** TCP accept socket - only creates handlers if readable. */
|
||||||
|
comm_tcp_accept,
|
||||||
|
/** TCP handler socket - handle byteperbyte readwrite. */
|
||||||
|
comm_tcp
|
||||||
} type;
|
} type;
|
||||||
|
|
||||||
/** what to do when read/write is done.
|
/** what to do when read/write is done.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue