diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-04-30 16:35:35 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-04-30 16:35:35 +0200 |
commit | c370fc6305af0fc9c37f818d8b88726b899b0d0a (patch) | |
tree | d07339f8fab9125240d11ca67aa4679e0018956e /runtime/nsd_gtls.h | |
parent | b0d63ea8f26f525bbfd177aaa6a1294b0d94f1f9 (diff) | |
download | rsyslog-c370fc6305af0fc9c37f818d8b88726b899b0d0a.tar.gz rsyslog-c370fc6305af0fc9c37f818d8b88726b899b0d0a.tar.xz rsyslog-c370fc6305af0fc9c37f818d8b88726b899b0d0a.zip |
server handshake now works with nonblocking sockets
Diffstat (limited to 'runtime/nsd_gtls.h')
-rw-r--r-- | runtime/nsd_gtls.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/nsd_gtls.h b/runtime/nsd_gtls.h index 492a2da1..83e15f29 100644 --- a/runtime/nsd_gtls.h +++ b/runtime/nsd_gtls.h @@ -27,7 +27,8 @@ #include "nsd.h" typedef enum { - gtlsRtry_None = 0 /**< no call needs to be retried */ + gtlsRtry_None = 0, /**< no call needs to be retried */ + gtlsRtry_handshake = 1 } gtlsRtryCall_t; /**< IDs of calls that needs to be retried */ typedef nsd_if_t nsd_gtls_if_t; /* we just *implement* this interface */ |