summaryrefslogtreecommitdiff
path: root/src/sds.h
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2014-12-11 18:28:26 +0100
committerantirez <antirez@gmail.com>2014-12-11 18:29:04 +0100
commitbbf0736c4e472c5488fae6990de51417bc8a2e42 (patch)
tree0f6625e05063a38b5e20ec88c2d76a28a55590cd /src/sds.h
parentce269ad3c5a13636b2c87aa69473c30410b06c36 (diff)
downloadredis-bbf0736c4e472c5488fae6990de51417bc8a2e42.tar.gz
sdsformatip() removed.
Specialized single-use function. Not the best match for sds.c btw. Also genClientPeerId() is no longer static: we need symbols.
Diffstat (limited to 'src/sds.h')
-rw-r--r--src/sds.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/sds.h b/src/sds.h
index f1f84c812..37aaf7a28 100644
--- a/src/sds.h
+++ b/src/sds.h
@@ -91,7 +91,6 @@ sds sdscatrepr(sds s, const char *p, size_t len);
sds *sdssplitargs(const char *line, int *argc);
sds sdsmapchars(sds s, const char *from, const char *to, size_t setlen);
sds sdsjoin(char **argv, int argc, char *sep);
-sds sdsformatip(char *ip, int port);
/* Low level functions exposed to the user API */
sds sdsMakeRoomFor(sds s, size_t addlen);