00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef _EVENT2_TAG_H_
00028 #define _EVENT2_TAG_H_
00029
00036 #ifdef __cplusplus
00037 extern "C" {
00038 #endif
00039
00040 #include <event-config.h>
00041 #ifdef _EVENT_HAVE_SYS_TYPES_H
00042 #include <sys/types.h>
00043 #endif
00044 #ifdef _EVENT_HAVE_SYS_TIME_H
00045 #include <sys/time.h>
00046 #endif
00047
00048
00049 #include <event2/util.h>
00050
00051 #ifdef WIN32
00052 #define WIN32_LEAN_AND_MEAN
00053 #include <windows.h>
00054 #undef WIN32_LEAN_AND_MEAN
00055 #endif
00056
00057 struct evbuffer;
00058
00059
00060
00061
00062
00063
00064
00065 void evtag_init(void);
00066
00074 int evtag_unmarshal_header(struct evbuffer *evbuf, ev_uint32_t *ptag);
00075
00076 void evtag_marshal(struct evbuffer *evbuf, ev_uint32_t tag, const void *data,
00077 ev_uint32_t len);
00078 void evtag_marshal_buffer(struct evbuffer *evbuf, ev_uint32_t tag,
00079 struct evbuffer *data);
00080
00091 void encode_int(struct evbuffer *evbuf, ev_uint32_t number);
00092 void encode_int64(struct evbuffer *evbuf, ev_uint64_t number);
00093
00094 void evtag_marshal_int(struct evbuffer *evbuf, ev_uint32_t tag,
00095 ev_uint32_t integer);
00096 void evtag_marshal_int64(struct evbuffer *evbuf, ev_uint32_t tag,
00097 ev_uint64_t integer);
00098
00099 void evtag_marshal_string(struct evbuffer *buf, ev_uint32_t tag,
00100 const char *string);
00101
00102 void evtag_marshal_timeval(struct evbuffer *evbuf, ev_uint32_t tag,
00103 struct timeval *tv);
00104
00105 int evtag_unmarshal(struct evbuffer *src, ev_uint32_t *ptag,
00106 struct evbuffer *dst);
00107 int evtag_peek(struct evbuffer *evbuf, ev_uint32_t *ptag);
00108 int evtag_peek_length(struct evbuffer *evbuf, ev_uint32_t *plength);
00109 int evtag_payload_length(struct evbuffer *evbuf, ev_uint32_t *plength);
00110 int evtag_consume(struct evbuffer *evbuf);
00111
00112 int evtag_unmarshal_int(struct evbuffer *evbuf, ev_uint32_t need_tag,
00113 ev_uint32_t *pinteger);
00114 int evtag_unmarshal_int64(struct evbuffer *evbuf, ev_uint32_t need_tag,
00115 ev_uint64_t *pinteger);
00116
00117 int evtag_unmarshal_fixed(struct evbuffer *src, ev_uint32_t need_tag,
00118 void *data, size_t len);
00119
00120 int evtag_unmarshal_string(struct evbuffer *evbuf, ev_uint32_t need_tag,
00121 char **pstring);
00122
00123 int evtag_unmarshal_timeval(struct evbuffer *evbuf, ev_uint32_t need_tag,
00124 struct timeval *ptv);
00125
00126 #ifdef __cplusplus
00127 }
00128 #endif
00129
00130 #endif