From 7b0fde02e4feecdf40d3603c3f93c74d591d5386 Mon Sep 17 00:00:00 2001 From: Michael Graff Date: Sat, 28 Aug 1999 04:26:16 +0000 Subject: [PATCH] define a few socket event (read/write) attributes --- lib/isc/include/isc/socket.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/isc/include/isc/socket.h b/lib/isc/include/isc/socket.h index b0392f3dcb..dd7ed1ce58 100644 --- a/lib/isc/include/isc/socket.h +++ b/lib/isc/include/isc/socket.h @@ -102,6 +102,10 @@ struct isc_socket_connev { isc_result_t result; /* OK, EOF, whatever else */ }; +#define ISC_SOCKEVENTATTR_TRUNC 0x8000000U +#define ISC_SOCKEVENTATTR_CTRUNC 0x4000000U +#define ISC_SOCKEVENTATTR_TIMESTAMP 0x2000000U + #define ISC_SOCKEVENT_ANYEVENT (0) #define ISC_SOCKEVENT_RECVDONE (ISC_EVENTCLASS_SOCKET + 1) #define ISC_SOCKEVENT_SENDDONE (ISC_EVENTCLASS_SOCKET + 2)