diff options
-rw-r--r-- | src/handshake.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/handshake.c b/src/handshake.c index 4e53802..5df7cb8 100644 --- a/src/handshake.c +++ b/src/handshake.c @@ -49,11 +49,6 @@ static const char *const RECORD_TYPES[RECORD_MAX] = { "TLV message authentication code", }; -static const char *const REPLY_TYPES[REPLY_MAX] = { - "success", - "mandatory field missing", - "unacceptable value", -}; #define AS_UINT8(ptr) (*(uint8_t*)(ptr).data) #define AS_UINT16(ptr) ((*(uint8_t*)(ptr).data) + (*((uint8_t*)(ptr).data+1) << 8)) |