summaryrefslogtreecommitdiff
path: root/clients/ms_conn.h
diff options
context:
space:
mode:
authorBrian Aker <brian@tangent.org>2011-04-27 17:28:00 -0700
committerBrian Aker <brian@tangent.org>2011-04-27 17:28:00 -0700
commitae6bc7501efd5aeaaee92dabe2da0ec2d1625c5b (patch)
treea3402f89ec55423cb9f120902ac1148fa032b65a /clients/ms_conn.h
parent0f16555031c7f44d1acd034ff74e628c51a72dac (diff)
downloadlibmemcached-ae6bc7501efd5aeaaee92dabe2da0ec2d1625c5b.tar.gz
Merge in conversion to C++.
Diffstat (limited to 'clients/ms_conn.h')
-rw-r--r--clients/ms_conn.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/clients/ms_conn.h b/clients/ms_conn.h
index cf1e8c0f..b915888d 100644
--- a/clients/ms_conn.h
+++ b/clients/ms_conn.h
@@ -60,7 +60,7 @@ enum conn_states
{
conn_read, /* reading in a command line */
conn_write, /* writing out a simple response */
- conn_closing, /* closing this connection */
+ conn_closing /* closing this connection */
};
/* returned states of memcached command */
@@ -78,7 +78,7 @@ enum mcd_ret
MCD_NOTFOUND, /* server not find the object */
MCD_END, /* end of the response of get command */
MCD_DELETED, /* server delete the object successfully */
- MCD_STAT, /* response of stats command */
+ MCD_STAT /* response of stats command */
};
/* used to store the current or previous running command state */
@@ -103,7 +103,7 @@ typedef struct udppkt
enum protocol
{
ascii_prot = 3, /* ASCII protocol */
- binary_prot, /* binary protocol */
+ binary_prot /* binary protocol */
};
/**