aboutsummaryrefslogtreecommitdiff
path: root/src/nng.c
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2017-09-27 15:14:14 -0700
committerGarrett D'Amore <garrett@damore.org>2017-09-27 15:14:14 -0700
commit0736a958673683a9bfe0bf577b696f49c7bd8302 (patch)
tree93f1995f7e7130ffe31cc9701be6b390faabd6e7 /src/nng.c
parent64db0f085be0c9efc6dca8d9e72d3e5a47cb792e (diff)
downloadnng-0736a958673683a9bfe0bf577b696f49c7bd8302.tar.gz
nng-0736a958673683a9bfe0bf577b696f49c7bd8302.tar.bz2
nng-0736a958673683a9bfe0bf577b696f49c7bd8302.zip
Remove last vestiges of integer option numbers.
Diffstat (limited to 'src/nng.c')
-rw-r--r--src/nng.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/nng.c b/src/nng.c
index d30a8442..7a78357e 100644
--- a/src/nng.c
+++ b/src/nng.c
@@ -1013,16 +1013,3 @@ nng_thread_destroy(void *arg)
NNI_FREE_STRUCT(thr);
}
-
-// Constant option definitions. These are for well-known options,
-// so that the vast majority of consumers don't have to look these up.
-
-const char *nng_opt_raw = "raw";
-const char *nng_opt_recvmaxsz = "recv-size-max";
-const char *nng_opt_maxttl = "ttl-max";
-const char *nng_opt_protocol = "protocol";
-const char *nng_opt_transport = "transport";
-const char *nng_opt_locaddr = "local-address";
-const char *nng_opt_remaddr = "remote-address";
-// Well known protocol options.
-const char *nng_opt_surveyor_surveytime = "surveyor:survey-time";