Skip to content

Commit

Permalink
CLEANUP: Detach ASCII/Binary protocols from memcached
Browse files Browse the repository at this point in the history
  • Loading branch information
ing-eoking committed Mar 12, 2024
1 parent 3260b98 commit c055d18
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ memcached_SOURCES = \
hash.h \
memcached.c\
memcached.h \
proto_ascii.c \
proto_ascii.h \
proto_bin.c \
proto_bin.h \
sasl_defs.h \
stats.c stats.h \
thread.c \
Expand Down
6 changes: 6 additions & 0 deletions proto_ascii.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#include "memcached.h"
#include "proto_ascii.h"

#ifndef PROTO_ASCII_H

#endif
5 changes: 5 additions & 0 deletions proto_ascii.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#ifndef PROTO_ASCII_H
#define PROTO_ASCII_H


#endif
5 changes: 5 additions & 0 deletions proto_bin.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#include "memcached.h"
#include "proto_bin.h"
#ifndef PROTO_BIN_H

#endif
5 changes: 5 additions & 0 deletions proto_bin.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#ifndef PROTO_BIN_H
#define PROTO_BIN_H


#endif

0 comments on commit c055d18

Please sign in to comment.