summaryrefslogtreecommitdiffstats
path: root/src/handshake.c
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2014-01-26 00:54:26 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2014-01-26 00:54:59 +0100
commitb10ab0ff2aa610b1a399b8c6234f3c1bdd2aa344 (patch)
treeff3727848bd2e2e3060f1ce09d2ffa9f6362616d /src/handshake.c
parentf983154677dfa6940807783c0fa8f5fcecd339a2 (diff)
downloadfastd-b10ab0ff2aa610b1a399b8c6234f3c1bdd2aa344.tar
fastd-b10ab0ff2aa610b1a399b8c6234f3c1bdd2aa344.zip
Remove unused REPLY_TYPES
Diffstat (limited to 'src/handshake.c')
-rw-r--r--src/handshake.c5
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))