json stuff added.

FossilOrigin-Name: 018a7253083e6a480bfcf282d892d13707f49353136106b336ec1ffbf3747614
This commit is contained in:
7u83@mail.ru
2015-04-17 05:38:44 +00:00
parent 57cd0a11b1
commit 8eeaa28ffb
7 changed files with 248 additions and 4 deletions

View File

@ -71,6 +71,13 @@ UTILOBJS= \
cw_format_version.o \
send.o
MAVLOBJS= \
mavl.o \
mavl_del.o \
mavl_add.o \
mavl_create.o\
utf8.o
# cw_foreach_msgelem.o \
@ -318,7 +325,8 @@ OBJS=$(CONNOBJS) $(FRAGOBJS) $(SOCKOBJS) $(CAPWAPOBJS) $(WTPINFOOBJS) \
$(LOGOBJS) $(UTILOBJS) $(DTLSOBJS) $(BSTROBJS) \
$(LWAPPOBJS) \
$(LWAPPCISCOOBJS) \
$(CWACTION)
$(CWACTION) \
$(MAVLOBJS)
#include $(OBJS:.o=.d)

View File

@ -1062,5 +1062,7 @@ struct cw_item *cw_out_get_session_id(struct conn *conn, struct cw_action_out *a
int cw_send_request(struct conn *conn, int msg_id);
int cw_is_utf8(unsigned char *str, size_t len);
#endif