]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
doc fixup.
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Mon, 22 Jan 2007 15:30:47 +0000 (15:30 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Mon, 22 Jan 2007 15:30:47 +0000 (15:30 +0000)
git-svn-id: file:///svn/unbound/trunk@26 be551aaa-1e26-0410-a405-d3ace91eadb9

util/netevent.h

index 8a1e9962cd1845001ef2c53e55a4fd82b4a6252c..e3632aaeb3a9627bfa0480a2ef4326633ba774b9 100644 (file)
@@ -69,9 +69,12 @@ struct comm_point {
 
        /** is this a UDP, TCP-accept or TCP socket. */
        enum comm_point_type {
-               comm_udp, /** UDP socket */
-               comm_tcp_accept, /** TCP accept socket */
-               comm_tcp  /** TCP handler socket */
+               /** UDP socket - handle datagrams. */
+               comm_udp, 
+               /** TCP accept socket - only creates handlers if readable. */
+               comm_tcp_accept, 
+               /** TCP handler socket - handle byteperbyte readwrite. */
+               comm_tcp  
        } type;
 
        /** what to do when read/write is done.