]> git.proxmox.com Git - mirror_frr.git/blobdiff - lib/json.h
bgpd: Auto RD definitions and encoding
[mirror_frr.git] / lib / json.h
index e3d73d9d880ebb5482cce22ad9555b4ad39d8618..675d852af718829acb735c282b67ce19a7afb165 100644 (file)
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * General Public License for more details.
  *
- * You should have received a copy of the GNU General Public License
- * along with GNU Zebra; see the file COPYING.  If not, write to the Free
- * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
- * 02111-1307, USA.
+ * You should have received a copy of the GNU General Public License along
+ * with this program; see the file COPYING; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #ifndef _QUAGGA_JSON_H
  * so let's just turn it back to the original usage.
  */
 #define json_object_to_json_string_ext(A, B) json_object_to_json_string (A)
+
+extern int json_object_object_get_ex(struct json_object *obj, const char *key,
+                                    struct json_object **value);
 #endif
 
+#include "command.h"
+
 extern int use_json(const int argc, struct cmd_token *argv[]);
-extern void json_object_string_add(struct json_objectobj, const char *key,
-                                   const char *s);
-extern void json_object_int_add(struct json_objectobj, const char *key,
-                                int32_t i);
-extern void json_object_boolean_false_add(struct json_objectobj,
-                                          const char *key);
-extern void json_object_boolean_true_add(struct json_objectobj,
-                                         const char *key);
-extern struct json_objectjson_object_lock(struct json_object *obj);
+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,
+                               int64_t i);
+extern void json_object_boolean_false_add(struct json_object *obj,
+                                         const char *key);
+extern void json_object_boolean_true_add(struct json_object *obj,
+                                        const char *key);
+extern struct json_object *json_object_lock(struct json_object *obj);
 extern void json_object_free(struct json_object *obj);
 
 #define JSON_STR "JavaScript Object Notation\n"
 
+/* NOTE: json-c lib has following commit 316da85 which
+ * handles escape of forward slash.
+ * This allows prefix  "20.0.14.0\/24":{
+ * to  "20.0.14.0/24":{ some platforms do not have
+ * latest copy of json-c where defining below macro.
+ */
+
+#ifndef JSON_C_TO_STRING_NOSLASHESCAPE
+
+/**
+  * Don't escape forward slashes.
+  */
+#define JSON_C_TO_STRING_NOSLASHESCAPE (1<<4)
+#endif
+
 #endif /* _QUAGGA_JSON_H */