0
0
mirror of https://github.com/zeromq/libzmq.git synced 2025-01-16 12:16:33 +08:00

Merge pull request #579 from ianbarber/master

Clean up socket_type_string
This commit is contained in:
Pieter Hintjens 2013-06-21 09:00:18 -07:00
commit 92b02b98cd
2 changed files with 2 additions and 2 deletions

View File

@ -58,6 +58,8 @@ namespace zmq
protected:
// Only used to identify the socket for the Socket-Type
// property in the wire protocol.
const char *socket_type_string (int socket_type) const;
size_t add_property (unsigned char *ptr, const char *name,

View File

@ -109,8 +109,6 @@ namespace zmq
size_t add_property (unsigned char *ptr,
const char *name, const void *value, size_t value_len);
const char *socket_type_string (int socket_type);
// Underlying socket.
fd_t s;