diff options
author | antirez <antirez@gmail.com> | 2013-07-11 10:25:48 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2013-07-11 10:25:48 +0200 |
commit | 253e796a59c68a0ccc57c156cfa61f97e97afad6 (patch) | |
tree | 7e76c67016bc9bc04f0324e429450c0929283171 | |
parent | fbf1bb648e2e71a354ff4a1c0db07be2b3673a8a (diff) |
example.c: it is now possible to specify server ip/port.
This makes possible to use the example with IPv6 addresses and/or with a
different Redis instance than 127.0.0.1:6379.
-rw-r--r-- | examples/example.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/example.c b/examples/example.c index c76451f..25226a8 100644 --- a/examples/example.c +++ b/examples/example.c @@ -4,13 +4,15 @@ #include <hiredis.h> -int main(void) { +int main(int argc, char **argv) { unsigned int j; redisContext *c; redisReply *reply; + const char *hostname = (argc > 1) ? argv[1] : "127.0.0.1"; + int port = (argc > 2) ? atoi(argv[2]) : 6379; struct timeval timeout = { 1, 500000 }; // 1.5 seconds - c = redisConnectWithTimeout((char*)"127.0.0.1", 6379, timeout); + c = redisConnectWithTimeout(hostname, port, timeout); if (c == NULL || c->err) { if (c) { printf("Connection error: %s\n", c->errstr); |