summaryrefslogtreecommitdiff
path: root/lib/json.h
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2017-06-29 23:05:36 +0000
committerQuentin Young <qlyoung@cumulusnetworks.com>2017-06-29 23:05:36 +0000
commitd849012d19f1743691a05f4c38f69e6af5110806 (patch)
treeeb794af0126e4f4003d9ee7b8c6f3b57459d1d32 /lib/json.h
parentefd934cab078c715c5f647c19cebd8f85463b753 (diff)
lib: always use 64-bit integers for json
json-c does not (yet) offer support for unsigned integer types, and furthermore, the docs state that all integers are stored internally as 64-bit. So there's never a case in which we would want to limit, implicitly or otherwise, the range of an integer when adding it to a json object. Among other things this fixes the display of ASN values greater than (1/2) * (2^32 - 1) Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'lib/json.h')
-rw-r--r--lib/json.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/json.h b/lib/json.h
index 5faaaa841a..86271703f4 100644
--- a/lib/json.h
+++ b/lib/json.h
@@ -43,8 +43,6 @@ extern int use_json(const int argc, struct cmd_token *argv[]);
extern void json_object_string_add(struct json_object* obj, const char *key,
const char *s);
extern void json_object_int_add(struct json_object* obj, const char *key,
- int32_t i);
-extern void json_object_long_add(struct json_object* obj, const char *key,
int64_t i);
extern void json_object_boolean_false_add(struct json_object* obj,
const char *key);