Skip to content

Commit c055d18

Browse files
committed
CLEANUP: Detach ASCII/Binary protocols from memcached
1 parent 3260b98 commit c055d18

File tree

5 files changed

+25
-0
lines changed

5 files changed

+25
-0
lines changed

Makefile.am

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,10 @@ memcached_SOURCES = \
7878
hash.h \
7979
memcached.c\
8080
memcached.h \
81+
proto_ascii.c \
82+
proto_ascii.h \
83+
proto_bin.c \
84+
proto_bin.h \
8185
sasl_defs.h \
8286
stats.c stats.h \
8387
thread.c \

proto_ascii.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#include "memcached.h"
2+
#include "proto_ascii.h"
3+
4+
#ifndef PROTO_ASCII_H
5+
6+
#endif

proto_ascii.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#ifndef PROTO_ASCII_H
2+
#define PROTO_ASCII_H
3+
4+
5+
#endif

proto_bin.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#include "memcached.h"
2+
#include "proto_bin.h"
3+
#ifndef PROTO_BIN_H
4+
5+
#endif

proto_bin.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#ifndef PROTO_BIN_H
2+
#define PROTO_BIN_H
3+
4+
5+
#endif

0 commit comments

Comments
 (0)