Improve the process for GNU tools
[minix3.git] / external / bsd / libevent / man / buffer.h.3
blob842c0f0432532bce71a93e56aefe890b3639bd1f
1 .TH "event2/buffer.h" 3 "Tue Jan 27 2015" "libevent" \" -*- nroff -*-
2 .ad l
3 .nh
4 .SH NAME
5 event2/buffer.h \- 
6 Functions for buffering data for network sending or receiving\&.  
8 .SH SYNOPSIS
9 .br
10 .PP
11 \fC#include <event2/event-config\&.h>\fP
12 .br
13 \fC#include <stdarg\&.h>\fP
14 .br
15 \fC#include <event2/util\&.h>\fP
16 .br
18 .SS "Data Structures"
20 .in +1c
21 .ti -1c
22 .RI "struct \fBevbuffer\fP"
23 .br
24 .RI "\fIAn evbuffer is an opaque data type for efficiently buffering data to be sent or received on the network\&. \fP"
25 .ti -1c
26 .RI "struct \fBevbuffer_cb_info\fP"
27 .br
28 .RI "\fIStructure passed to an evbuffer_cb_func evbuffer callback\&. \fP"
29 .ti -1c
30 .RI "struct \fBevbuffer_iovec\fP"
31 .br
32 .RI "\fIDescribes a single extent of memory inside an evbuffer\&. \fP"
33 .ti -1c
34 .RI "struct \fBevbuffer_ptr\fP"
35 .br
36 .RI "\fIPointer to a position within an evbuffer\&. \fP"
37 .in -1c
38 .SS "Macros"
40 .in +1c
41 .ti -1c
42 .RI "#define \fBEVBUFFER_CB_ENABLED\fP   1"
43 .br
44 .RI "\fIIf this flag is not set, then a callback is temporarily disabled, and should not be invoked\&. \fP"
45 .ti -1c
46 .RI "#define \fBEVBUFFER_FLAG_DRAINS_TO_FD\fP   1"
47 .br
48 .RI "\fIIf this flag is set, then we will not use \fBevbuffer_peek()\fP, \fBevbuffer_remove()\fP, \fBevbuffer_remove_buffer()\fP, and so on to read bytes from this buffer: we'll only take bytes out of this buffer by writing them to the network (as with evbuffer_write_atmost), by removing them without observing them (as with evbuffer_drain), or by copying them all out at once (as with evbuffer_add_buffer)\&. \fP"
49 .in -1c
50 .SS "Typedefs"
52 .in +1c
53 .ti -1c
54 .RI "typedef void(* \fBevbuffer_cb_func\fP )(struct \fBevbuffer\fP *buffer, const struct \fBevbuffer_cb_info\fP *info, void *arg)"
55 .br
56 .RI "\fIType definition for a callback that is invoked whenever data is added or removed from an evbuffer\&. \fP"
57 .ti -1c
58 .RI "typedef void(* \fBevbuffer_ref_cleanup_cb\fP )(const void *data, size_t datalen, void *extra)"
59 .br
60 .RI "\fIA cleanup function for a piece of memory added to an evbuffer by reference\&. \fP"
61 .in -1c
62 .SS "Enumerations"
64 .in +1c
65 .ti -1c
66 .RI "enum \fBevbuffer_eol_style\fP { \fBEVBUFFER_EOL_ANY\fP, \fBEVBUFFER_EOL_CRLF\fP, \fBEVBUFFER_EOL_CRLF_STRICT\fP, \fBEVBUFFER_EOL_LF\fP }"
67 .br
68 .RI "\fIUsed to tell evbuffer_readln what kind of line-ending to look for\&. \fP"
69 .ti -1c
70 .RI "enum \fBevbuffer_ptr_how\fP { \fBEVBUFFER_PTR_SET\fP, \fBEVBUFFER_PTR_ADD\fP }"
71 .br
72 .RI "\fIDefines how to adjust an \fBevbuffer_ptr\fP by \fBevbuffer_ptr_set()\fP \fP"
73 .in -1c
74 .SS "Functions"
76 .in +1c
77 .ti -1c
78 .RI "int \fBevbuffer_add\fP (struct \fBevbuffer\fP *buf, const void *data, size_t datlen)"
79 .br
80 .RI "\fIAppend data to the end of an evbuffer\&. \fP"
81 .ti -1c
82 .RI "int \fBevbuffer_add_buffer\fP (struct \fBevbuffer\fP *outbuf, struct \fBevbuffer\fP *inbuf)"
83 .br
84 .RI "\fIMove all data from one evbuffer into another evbuffer\&. \fP"
85 .ti -1c
86 .RI "struct evbuffer_cb_entry * \fBevbuffer_add_cb\fP (struct \fBevbuffer\fP *buffer, \fBevbuffer_cb_func\fP cb, void *cbarg)"
87 .br
88 .RI "\fIAdd a new callback to an evbuffer\&. \fP"
89 .ti -1c
90 .RI "int \fBevbuffer_add_file\fP (struct \fBevbuffer\fP *outbuf, int fd, ev_off_t offset, ev_off_t length)"
91 .br
92 .RI "\fICopy data from a file into the evbuffer for writing to a socket\&. \fP"
93 .ti -1c
94 .RI "int \fBevbuffer_add_printf\fP (struct \fBevbuffer\fP *buf, const char *fmt,\&.\&.\&.)"
95 .br
96 .RI "\fIAppend a formatted string to the end of an evbuffer\&. \fP"
97 .ti -1c
98 .RI "int \fBevbuffer_add_reference\fP (struct \fBevbuffer\fP *outbuf, const void *data, size_t datlen, \fBevbuffer_ref_cleanup_cb\fP cleanupfn, void *cleanupfn_arg)"
99 .br
100 .RI "\fIReference memory into an evbuffer without copying\&. \fP"
101 .ti -1c
102 .RI "int \fBevbuffer_add_vprintf\fP (struct \fBevbuffer\fP *buf, const char *fmt, va_list ap)"
104 .RI "\fIAppend a va_list formatted string to the end of an evbuffer\&. \fP"
105 .ti -1c
106 .RI "int \fBevbuffer_cb_clear_flags\fP (struct \fBevbuffer\fP *buffer, struct evbuffer_cb_entry *cb, ev_uint32_t flags)"
108 .RI "\fIChange the flags that are set for a callback on a buffer by removing some\&. \fP"
109 .ti -1c
110 .RI "int \fBevbuffer_cb_set_flags\fP (struct \fBevbuffer\fP *buffer, struct evbuffer_cb_entry *cb, ev_uint32_t flags)"
112 .RI "\fIChange the flags that are set for a callback on a buffer by adding more\&. \fP"
113 .ti -1c
114 .RI "int \fBevbuffer_clear_flags\fP (struct \fBevbuffer\fP *buf, ev_uint64_t flags)"
116 .RI "\fIChange the flags that are set for an evbuffer by removing some\&. \fP"
117 .ti -1c
118 .RI "int \fBevbuffer_commit_space\fP (struct \fBevbuffer\fP *buf, struct \fBevbuffer_iovec\fP *vec, int n_vecs)"
120 .RI "\fICommits previously reserved space\&. \fP"
121 .ti -1c
122 .RI "ev_ssize_t \fBevbuffer_copyout\fP (struct \fBevbuffer\fP *buf, void *data_out, size_t datlen)"
124 .RI "\fIRead data from an evbuffer, and leave the buffer unchanged\&. \fP"
125 .ti -1c
126 .RI "int \fBevbuffer_defer_callbacks\fP (struct \fBevbuffer\fP *buffer, struct \fBevent_base\fP *base)"
128 .RI "\fIForce all the callbacks on an evbuffer to be run, not immediately after the evbuffer is altered, but instead from inside the event loop\&. \fP"
129 .ti -1c
130 .RI "int \fBevbuffer_drain\fP (struct \fBevbuffer\fP *buf, size_t len)"
132 .RI "\fIRemove a specified number of bytes data from the beginning of an evbuffer\&. \fP"
133 .ti -1c
134 .RI "int \fBevbuffer_enable_locking\fP (struct \fBevbuffer\fP *buf, void *lock)"
136 .RI "\fIEnable locking on an evbuffer so that it can safely be used by multiple threads at the same time\&. \fP"
137 .ti -1c
138 .RI "int \fBevbuffer_expand\fP (struct \fBevbuffer\fP *buf, size_t datlen)"
140 .RI "\fIExpands the available space in an evbuffer\&. \fP"
141 .ti -1c
142 .RI "void \fBevbuffer_free\fP (struct \fBevbuffer\fP *buf)"
144 .RI "\fIDeallocate storage for an evbuffer\&. \fP"
145 .ti -1c
146 .RI "int \fBevbuffer_freeze\fP (struct \fBevbuffer\fP *buf, int at_front)"
148 .RI "\fIPrevent calls that modify an evbuffer from succeeding\&. \fP"
149 .ti -1c
150 .RI "size_t \fBevbuffer_get_contiguous_space\fP (const struct \fBevbuffer\fP *buf)"
152 .RI "\fIReturns the number of contiguous available bytes in the first buffer chain\&. \fP"
153 .ti -1c
154 .RI "size_t \fBevbuffer_get_length\fP (const struct \fBevbuffer\fP *buf)"
156 .RI "\fIReturns the total number of bytes stored in the evbuffer\&. \fP"
157 .ti -1c
158 .RI "void \fBevbuffer_lock\fP (struct \fBevbuffer\fP *buf)"
160 .RI "\fIAcquire the lock on an evbuffer\&. \fP"
161 .ti -1c
162 .RI "struct \fBevbuffer\fP * \fBevbuffer_new\fP (void)"
164 .RI "\fIAllocate storage for a new evbuffer\&. \fP"
165 .ti -1c
166 .RI "int \fBevbuffer_peek\fP (struct \fBevbuffer\fP *buffer, ev_ssize_t len, struct \fBevbuffer_ptr\fP *start_at, struct \fBevbuffer_iovec\fP *vec_out, int n_vec)"
168 .RI "\fIFunction to peek at data inside an evbuffer without removing it or copying it out\&. \fP"
169 .ti -1c
170 .RI "int \fBevbuffer_prepend\fP (struct \fBevbuffer\fP *buf, const void *data, size_t size)"
172 .RI "\fIPrepends data to the beginning of the evbuffer\&. \fP"
173 .ti -1c
174 .RI "int \fBevbuffer_prepend_buffer\fP (struct \fBevbuffer\fP *dst, struct \fBevbuffer\fP *src)"
176 .RI "\fIPrepends all data from the src evbuffer to the beginning of the dst evbuffer\&. \fP"
177 .ti -1c
178 .RI "int \fBevbuffer_ptr_set\fP (struct \fBevbuffer\fP *buffer, struct \fBevbuffer_ptr\fP *ptr, size_t position, enum \fBevbuffer_ptr_how\fP how)"
180 .RI "\fISets the search pointer in the buffer to position\&. \fP"
181 .ti -1c
182 .RI "unsigned char * \fBevbuffer_pullup\fP (struct \fBevbuffer\fP *buf, ev_ssize_t size)"
184 .RI "\fIMakes the data at the beginning of an evbuffer contiguous\&. \fP"
185 .ti -1c
186 .RI "int \fBevbuffer_read\fP (struct \fBevbuffer\fP *buffer, \fBevutil_socket_t\fP fd, int howmuch)"
188 .RI "\fIRead from a file descriptor and store the result in an evbuffer\&. \fP"
189 .ti -1c
190 .RI "char * \fBevbuffer_readln\fP (struct \fBevbuffer\fP *buffer, size_t *n_read_out, enum \fBevbuffer_eol_style\fP eol_style)"
192 .RI "\fIRead a single line from an evbuffer\&. \fP"
193 .ti -1c
194 .RI "int \fBevbuffer_remove\fP (struct \fBevbuffer\fP *buf, void *data, size_t datlen)"
196 .RI "\fIRead data from an evbuffer and drain the bytes read\&. \fP"
197 .ti -1c
198 .RI "int \fBevbuffer_remove_buffer\fP (struct \fBevbuffer\fP *src, struct \fBevbuffer\fP *dst, size_t datlen)"
200 .RI "\fIRead data from an evbuffer into another evbuffer, draining the bytes from the source buffer\&. \fP"
201 .ti -1c
202 .RI "int \fBevbuffer_remove_cb\fP (struct \fBevbuffer\fP *buffer, \fBevbuffer_cb_func\fP cb, void *cbarg)"
204 .RI "\fIRemove a callback from an evbuffer, given the function and argument used to add it\&. \fP"
205 .ti -1c
206 .RI "int \fBevbuffer_remove_cb_entry\fP (struct \fBevbuffer\fP *buffer, struct evbuffer_cb_entry *ent)"
208 .RI "\fIRemove a callback from an evbuffer, given a handle returned from evbuffer_add_cb\&. \fP"
209 .ti -1c
210 .RI "int \fBevbuffer_reserve_space\fP (struct \fBevbuffer\fP *buf, ev_ssize_t size, struct \fBevbuffer_iovec\fP *vec, int n_vec)"
212 .RI "\fIReserves space in the last chain or chains of an evbuffer\&. \fP"
213 .ti -1c
214 .RI "struct \fBevbuffer_ptr\fP \fBevbuffer_search\fP (struct \fBevbuffer\fP *buffer, const char *what, size_t len, const struct \fBevbuffer_ptr\fP *start)"
216 .RI "\fISearch for a string within an evbuffer\&. \fP"
217 .ti -1c
218 .RI "struct \fBevbuffer_ptr\fP \fBevbuffer_search_eol\fP (struct \fBevbuffer\fP *buffer, struct \fBevbuffer_ptr\fP *start, size_t *eol_len_out, enum \fBevbuffer_eol_style\fP eol_style)"
220 .RI "\fISearch for an end-of-line string within an evbuffer\&. \fP"
221 .ti -1c
222 .RI "struct \fBevbuffer_ptr\fP \fBevbuffer_search_range\fP (struct \fBevbuffer\fP *buffer, const char *what, size_t len, const struct \fBevbuffer_ptr\fP *start, const struct \fBevbuffer_ptr\fP *end)"
224 .RI "\fISearch for a string within part of an evbuffer\&. \fP"
225 .ti -1c
226 .RI "int \fBevbuffer_set_flags\fP (struct \fBevbuffer\fP *buf, ev_uint64_t flags)"
228 .RI "\fIChange the flags that are set for an evbuffer by adding more\&. \fP"
229 .ti -1c
230 .RI "int \fBevbuffer_unfreeze\fP (struct \fBevbuffer\fP *buf, int at_front)"
232 .RI "\fIRe-enable calls that modify an evbuffer\&. \fP"
233 .ti -1c
234 .RI "void \fBevbuffer_unlock\fP (struct \fBevbuffer\fP *buf)"
236 .RI "\fIRelease the lock on an evbuffer\&. \fP"
237 .ti -1c
238 .RI "int \fBevbuffer_write\fP (struct \fBevbuffer\fP *buffer, \fBevutil_socket_t\fP fd)"
240 .RI "\fIWrite the contents of an evbuffer to a file descriptor\&. \fP"
241 .ti -1c
242 .RI "int \fBevbuffer_write_atmost\fP (struct \fBevbuffer\fP *buffer, \fBevutil_socket_t\fP fd, ev_ssize_t howmuch)"
244 .RI "\fIWrite some of the contents of an evbuffer to a file descriptor\&. \fP"
245 .in -1c
246 .SH "Detailed Description"
247 .PP 
248 Functions for buffering data for network sending or receiving\&. 
250 An evbuffer can be used for preparing data before sending it to the network or conversely for reading data from the network\&. Evbuffers try to avoid memory copies as much as possible\&. As a result, evbuffers can be used to pass data around without actually incurring the overhead of copying the data\&.
252 A new evbuffer can be allocated with \fBevbuffer_new()\fP, and can be freed with \fBevbuffer_free()\fP\&. Most users will be using evbuffers via the bufferevent interface\&. To access a bufferevent's evbuffers, use \fBbufferevent_get_input()\fP and \fBbufferevent_get_output()\fP\&.
254 There are several guidelines for using evbuffers\&.
256 .IP "\(bu" 2
257 if you already know how much data you are going to add as a result of calling \fBevbuffer_add()\fP multiple times, it makes sense to use \fBevbuffer_expand()\fP first to make sure that enough memory is allocated before hand\&.
258 .IP "\(bu" 2
259 \fBevbuffer_add_buffer()\fP adds the contents of one buffer to the other without incurring any unnecessary memory copies\&.
260 .IP "\(bu" 2
261 \fBevbuffer_add()\fP and \fBevbuffer_add_buffer()\fP do not mix very well: if you use them, you will wind up with fragmented memory in your buffer\&.
262 .IP "\(bu" 2
263 For high-performance code, you may want to avoid copying data into and out of buffers\&. You can skip the copy step by using \fBevbuffer_reserve_space()\fP/evbuffer_commit_space() when writing into a buffer, and \fBevbuffer_peek()\fP when reading\&.
266 In Libevent 2\&.0 and later, evbuffers are represented using a linked list of memory chunks, with pointers to the first and last chunk in the chain\&.
268 As the contents of an evbuffer can be stored in multiple different memory blocks, it cannot be accessed directly\&. Instead, \fBevbuffer_pullup()\fP can be used to force a specified number of bytes to be contiguous\&. This will cause memory reallocation and memory copies if the data is split across multiple blocks\&. It is more efficient, however, to use \fBevbuffer_peek()\fP if you don't require that the memory to be contiguous\&. 
269 .SH "Macro Definition Documentation"
270 .PP 
271 .SS "#define EVBUFFER_CB_ENABLED   1"
274 If this flag is not set, then a callback is temporarily disabled, and should not be invoked\&. 
276 \fBSee also:\fP
277 .RS 4
278 \fBevbuffer_cb_set_flags()\fP, \fBevbuffer_cb_clear_flags()\fP 
282 .SS "#define EVBUFFER_FLAG_DRAINS_TO_FD   1"
285 If this flag is set, then we will not use \fBevbuffer_peek()\fP, \fBevbuffer_remove()\fP, \fBevbuffer_remove_buffer()\fP, and so on to read bytes from this buffer: we'll only take bytes out of this buffer by writing them to the network (as with evbuffer_write_atmost), by removing them without observing them (as with evbuffer_drain), or by copying them all out at once (as with evbuffer_add_buffer)\&. Using this option allows the implementation to use sendfile-based operations for \fBevbuffer_add_file()\fP; see that function for more information\&.
287 This flag is on by default for bufferevents that can take advantage of it; you should never actually need to set it on a bufferevent's output buffer\&. 
288 .SH "Typedef Documentation"
289 .PP 
290 .SS "typedef void(* evbuffer_cb_func)(struct \fBevbuffer\fP *buffer, const struct \fBevbuffer_cb_info\fP *info, void *arg)"
293 Type definition for a callback that is invoked whenever data is added or removed from an evbuffer\&. An evbuffer may have one or more callbacks set at a time\&. The order in which they are executed is undefined\&.
295 A callback function may add more callbacks, or remove itself from the list of callbacks, or add or remove data from the buffer\&. It may not remove another callback from the list\&.
297 If a callback adds or removes data from the buffer or from another buffer, this can cause a recursive invocation of your callback or other callbacks\&. If you ask for an infinite loop, you might just get one: watch out!
299 \fBParameters:\fP
300 .RS 4
301 \fIbuffer\fP the buffer whose size has changed 
303 \fIinfo\fP a structure describing how the buffer changed\&. 
305 \fIarg\fP a pointer to user data 
309 .SS "typedef void(* evbuffer_ref_cleanup_cb)(const void *data, size_t datalen, void *extra)"
312 A cleanup function for a piece of memory added to an evbuffer by reference\&. 
314 \fBSee also:\fP
315 .RS 4
316 \fBevbuffer_add_reference()\fP 
320 .SH "Enumeration Type Documentation"
321 .PP 
322 .SS "enum \fBevbuffer_eol_style\fP"
325 Used to tell evbuffer_readln what kind of line-ending to look for\&. 
327 \fBEnumerator\fP
328 .in +1c
330 \fB\fIEVBUFFER_EOL_ANY \fP\fP
331 Any sequence of CR and LF characters is acceptable as an EOL\&. Note that this style can produce ambiguous results: the sequence 'CRLF' will be treated as a single EOL if it is all in the buffer at once, but if you first read a CR from the network and later read an LF from the network, it will be treated as two EOLs\&. 
333 \fB\fIEVBUFFER_EOL_CRLF \fP\fP
334 An EOL is an LF, optionally preceded by a CR\&. This style is most useful for implementing text-based internet protocols\&. 
336 \fB\fIEVBUFFER_EOL_CRLF_STRICT \fP\fP
337 An EOL is a CR followed by an LF\&. 
339 \fB\fIEVBUFFER_EOL_LF \fP\fP
340 An EOL is a LF\&. 
341 .SS "enum \fBevbuffer_ptr_how\fP"
344 Defines how to adjust an \fBevbuffer_ptr\fP by \fBevbuffer_ptr_set()\fP 
346 \fBSee also:\fP
347 .RS 4
348 \fBevbuffer_ptr_set()\fP 
353 \fBEnumerator\fP
354 .in +1c
356 \fB\fIEVBUFFER_PTR_SET \fP\fP
357 Sets the pointer to the position; can be called on with an uninitialized \fBevbuffer_ptr\fP\&. 
359 \fB\fIEVBUFFER_PTR_ADD \fP\fP
360 Advances the pointer by adding to the current position\&. 
361 .SH "Function Documentation"
362 .PP 
363 .SS "int evbuffer_add (struct \fBevbuffer\fP *buf, const void *data, size_tdatlen)"
366 Append data to the end of an evbuffer\&. 
368 \fBParameters:\fP
369 .RS 4
370 \fIbuf\fP the evbuffer to be appended to 
372 \fIdata\fP pointer to the beginning of the data buffer 
374 \fIdatlen\fP the number of bytes to be copied from the data buffer 
377 \fBReturns:\fP
378 .RS 4
379 0 on success, -1 on failure\&. 
383 .SS "int evbuffer_add_buffer (struct \fBevbuffer\fP *outbuf, struct \fBevbuffer\fP *inbuf)"
386 Move all data from one evbuffer into another evbuffer\&. This is a destructive add\&. The data from one buffer moves into the other buffer\&. However, no unnecessary memory copies occur\&.
388 \fBParameters:\fP
389 .RS 4
390 \fIoutbuf\fP the output buffer 
392 \fIinbuf\fP the input buffer 
395 \fBReturns:\fP
396 .RS 4
397 0 if successful, or -1 if an error occurred
400 \fBSee also:\fP
401 .RS 4
402 \fBevbuffer_remove_buffer()\fP 
406 .SS "struct evbuffer_cb_entry* evbuffer_add_cb (struct \fBevbuffer\fP *buffer, \fBevbuffer_cb_func\fPcb, void *cbarg)"
409 Add a new callback to an evbuffer\&. Subsequent calls to \fBevbuffer_add_cb()\fP add new callbacks\&. To remove this callback, call evbuffer_remove_cb or evbuffer_remove_cb_entry\&.
411 \fBParameters:\fP
412 .RS 4
413 \fIbuffer\fP the evbuffer to be monitored 
415 \fIcb\fP the callback function to invoke when the evbuffer is modified, or NULL to remove all callbacks\&. 
417 \fIcbarg\fP an argument to be provided to the callback function 
420 \fBReturns:\fP
421 .RS 4
422 a handle to the callback on success, or NULL on failure\&. 
426 .SS "int evbuffer_add_file (struct \fBevbuffer\fP *outbuf, intfd, ev_off_toffset, ev_off_tlength)"
429 Copy data from a file into the evbuffer for writing to a socket\&. This function avoids unnecessary data copies between userland and kernel\&. If sendfile is available and the EVBUFFER_FLAG_DRAINS_TO_FD flag is set, it uses those functions\&. Otherwise, it tries to use mmap (or CreateFileMapping on Windows)\&.
431 The function owns the resulting file descriptor and will close it when finished transferring data\&.
433 The results of using \fBevbuffer_remove()\fP or \fBevbuffer_pullup()\fP on evbuffers whose data was added using this function are undefined\&.
435 \fBParameters:\fP
436 .RS 4
437 \fIoutbuf\fP the output buffer 
439 \fIfd\fP the file descriptor 
441 \fIoffset\fP the offset from which to read data 
443 \fIlength\fP how much data to read 
446 \fBReturns:\fP
447 .RS 4
448 0 if successful, or -1 if an error occurred 
452 .SS "int evbuffer_add_printf (struct \fBevbuffer\fP *buf, const char *fmt, \&.\&.\&.)"
455 Append a formatted string to the end of an evbuffer\&. The string is formated as printf\&.
457 \fBParameters:\fP
458 .RS 4
459 \fIbuf\fP the evbuffer that will be appended to 
461 \fIfmt\fP a format string 
463 \fI\&.\&.\&.\fP arguments that will be passed to printf(3) 
466 \fBReturns:\fP
467 .RS 4
468 The number of bytes added if successful, or -1 if an error occurred\&.
471 \fBSee also:\fP
472 .RS 4
473 evutil_printf(), \fBevbuffer_add_vprintf()\fP 
477 .SS "int evbuffer_add_reference (struct \fBevbuffer\fP *outbuf, const void *data, size_tdatlen, \fBevbuffer_ref_cleanup_cb\fPcleanupfn, void *cleanupfn_arg)"
480 Reference memory into an evbuffer without copying\&. The memory needs to remain valid until all the added data has been read\&. This function keeps just a reference to the memory without actually incurring the overhead of a copy\&.
482 \fBParameters:\fP
483 .RS 4
484 \fIoutbuf\fP the output buffer 
486 \fIdata\fP the memory to reference 
488 \fIdatlen\fP how memory to reference 
490 \fIcleanupfn\fP callback to be invoked when the memory is no longer referenced by this evbuffer\&. 
492 \fIcleanupfn_arg\fP optional argument to the cleanup callback 
495 \fBReturns:\fP
496 .RS 4
497 0 if successful, or -1 if an error occurred 
501 .SS "int evbuffer_add_vprintf (struct \fBevbuffer\fP *buf, const char *fmt, va_listap)"
504 Append a va_list formatted string to the end of an evbuffer\&. 
506 \fBParameters:\fP
507 .RS 4
508 \fIbuf\fP the evbuffer that will be appended to 
510 \fIfmt\fP a format string 
512 \fIap\fP a varargs va_list argument array that will be passed to vprintf(3) 
515 \fBReturns:\fP
516 .RS 4
517 The number of bytes added if successful, or -1 if an error occurred\&. 
521 .SS "int evbuffer_cb_clear_flags (struct \fBevbuffer\fP *buffer, struct evbuffer_cb_entry *cb, ev_uint32_tflags)"
524 Change the flags that are set for a callback on a buffer by removing some\&. 
526 \fBParameters:\fP
527 .RS 4
528 \fIbuffer\fP the evbuffer that the callback is watching\&. 
530 \fIcb\fP the callback whose status we want to change\&. 
532 \fIflags\fP EVBUFFER_CB_ENABLED to disable the callback\&. 
535 \fBReturns:\fP
536 .RS 4
537 0 on success, -1 on failure\&. 
541 .SS "int evbuffer_cb_set_flags (struct \fBevbuffer\fP *buffer, struct evbuffer_cb_entry *cb, ev_uint32_tflags)"
544 Change the flags that are set for a callback on a buffer by adding more\&. 
546 \fBParameters:\fP
547 .RS 4
548 \fIbuffer\fP the evbuffer that the callback is watching\&. 
550 \fIcb\fP the callback whose status we want to change\&. 
552 \fIflags\fP EVBUFFER_CB_ENABLED to re-enable the callback\&. 
555 \fBReturns:\fP
556 .RS 4
557 0 on success, -1 on failure\&. 
561 .SS "int evbuffer_clear_flags (struct \fBevbuffer\fP *buf, ev_uint64_tflags)"
564 Change the flags that are set for an evbuffer by removing some\&. 
566 \fBParameters:\fP
567 .RS 4
568 \fIbuffer\fP the evbuffer that the callback is watching\&. 
570 \fIcb\fP the callback whose status we want to change\&. 
572 \fIflags\fP One or more EVBUFFER_FLAG_* options 
575 \fBReturns:\fP
576 .RS 4
577 0 on success, -1 on failure\&. 
581 .SS "int evbuffer_commit_space (struct \fBevbuffer\fP *buf, struct \fBevbuffer_iovec\fP *vec, intn_vecs)"
584 Commits previously reserved space\&. Commits some of the space previously reserved with \fBevbuffer_reserve_space()\fP\&. It then becomes available for reading\&.
586 This function may return an error if the pointer in the extents do not match those returned from evbuffer_reserve_space, or if data has been added to the buffer since the space was reserved\&.
588 If you want to commit less data than you got reserved space for, modify the iov_len pointer of the appropriate extent to a smaller value\&. Note that you may have received more space than you requested if it was available!
590 \fBParameters:\fP
591 .RS 4
592 \fIbuf\fP the evbuffer in which to reserve space\&. 
594 \fIvec\fP one or two extents returned by evbuffer_reserve_space\&. 
596 \fIn_vecs\fP the number of extents\&. 
599 \fBReturns:\fP
600 .RS 4
601 0 on success, -1 on error 
604 \fBSee also:\fP
605 .RS 4
606 \fBevbuffer_reserve_space()\fP 
610 .SS "ev_ssize_t evbuffer_copyout (struct \fBevbuffer\fP *buf, void *data_out, size_tdatlen)"
613 Read data from an evbuffer, and leave the buffer unchanged\&. If more bytes are requested than are available in the evbuffer, we only extract as many bytes as were available\&.
615 \fBParameters:\fP
616 .RS 4
617 \fIbuf\fP the evbuffer to be read from 
619 \fIdata_out\fP the destination buffer to store the result 
621 \fIdatlen\fP the maximum size of the destination buffer 
624 \fBReturns:\fP
625 .RS 4
626 the number of bytes read, or -1 if we can't drain the buffer\&. 
630 .SS "int evbuffer_defer_callbacks (struct \fBevbuffer\fP *buffer, struct \fBevent_base\fP *base)"
633 Force all the callbacks on an evbuffer to be run, not immediately after the evbuffer is altered, but instead from inside the event loop\&. This can be used to serialize all the callbacks to a single thread of execution\&. 
634 .SS "int evbuffer_drain (struct \fBevbuffer\fP *buf, size_tlen)"
637 Remove a specified number of bytes data from the beginning of an evbuffer\&. 
639 \fBParameters:\fP
640 .RS 4
641 \fIbuf\fP the evbuffer to be drained 
643 \fIlen\fP the number of bytes to drain from the beginning of the buffer 
646 \fBReturns:\fP
647 .RS 4
648 0 on success, -1 on failure\&. 
652 .SS "int evbuffer_enable_locking (struct \fBevbuffer\fP *buf, void *lock)"
655 Enable locking on an evbuffer so that it can safely be used by multiple threads at the same time\&. NOTE: when locking is enabled, the lock will be held when callbacks are invoked\&. This could result in deadlock if you aren't careful\&. Plan accordingly!
657 \fBParameters:\fP
658 .RS 4
659 \fIbuf\fP An evbuffer to make lockable\&. 
661 \fIlock\fP A lock object, or NULL if we should allocate our own\&. 
664 \fBReturns:\fP
665 .RS 4
666 0 on success, -1 on failure\&. 
670 .SS "int evbuffer_expand (struct \fBevbuffer\fP *buf, size_tdatlen)"
673 Expands the available space in an evbuffer\&. Expands the available space in the evbuffer to at least datlen, so that appending datlen additional bytes will not require any new allocations\&.
675 \fBParameters:\fP
676 .RS 4
677 \fIbuf\fP the evbuffer to be expanded 
679 \fIdatlen\fP the new minimum length requirement 
682 \fBReturns:\fP
683 .RS 4
684 0 if successful, or -1 if an error occurred 
688 .SS "void evbuffer_free (struct \fBevbuffer\fP *buf)"
691 Deallocate storage for an evbuffer\&. 
693 \fBParameters:\fP
694 .RS 4
695 \fIbuf\fP pointer to the evbuffer to be freed 
699 .SS "int evbuffer_freeze (struct \fBevbuffer\fP *buf, intat_front)"
702 Prevent calls that modify an evbuffer from succeeding\&. A buffer may frozen at the front, at the back, or at both the front and the back\&.
704 If the front of a buffer is frozen, operations that drain data from the front of the buffer, or that prepend data to the buffer, will fail until it is unfrozen\&. If the back a buffer is frozen, operations that append data from the buffer will fail until it is unfrozen\&.
706 \fBParameters:\fP
707 .RS 4
708 \fIbuf\fP The buffer to freeze 
710 \fIat_front\fP If true, we freeze the front of the buffer\&. If false, we freeze the back\&. 
713 \fBReturns:\fP
714 .RS 4
715 0 on success, -1 on failure\&. 
719 .SS "size_t evbuffer_get_contiguous_space (const struct \fBevbuffer\fP *buf)"
722 Returns the number of contiguous available bytes in the first buffer chain\&. This is useful when processing data that might be split into multiple chains, or that might all be in the first chain\&. Calls to \fBevbuffer_pullup()\fP that cause reallocation and copying of data can thus be avoided\&.
724 \fBParameters:\fP
725 .RS 4
726 \fIbuf\fP pointer to the evbuffer 
729 \fBReturns:\fP
730 .RS 4
731 0 if no data is available, otherwise the number of available bytes in the first buffer chain\&. 
735 .SS "size_t evbuffer_get_length (const struct \fBevbuffer\fP *buf)"
738 Returns the total number of bytes stored in the evbuffer\&. 
740 \fBParameters:\fP
741 .RS 4
742 \fIbuf\fP pointer to the evbuffer 
745 \fBReturns:\fP
746 .RS 4
747 the number of bytes stored in the evbuffer 
751 .SS "void evbuffer_lock (struct \fBevbuffer\fP *buf)"
754 Acquire the lock on an evbuffer\&. Has no effect if locking was not enabled with evbuffer_enable_locking\&. 
755 .SS "struct \fBevbuffer\fP* evbuffer_new (void)"
758 Allocate storage for a new evbuffer\&. 
760 \fBReturns:\fP
761 .RS 4
762 a pointer to a newly allocated evbuffer struct, or NULL if an error occurred 
766 .SS "int evbuffer_peek (struct \fBevbuffer\fP *buffer, ev_ssize_tlen, struct \fBevbuffer_ptr\fP *start_at, struct \fBevbuffer_iovec\fP *vec_out, intn_vec)"
769 Function to peek at data inside an evbuffer without removing it or copying it out\&. Pointers to the data are returned by filling the 'vec_out' array with pointers to one or more extents of data inside the buffer\&.
771 The total data in the extents that you get back may be more than you requested (if there is more data last extent than you asked for), or less (if you do not provide enough evbuffer_iovecs, or if the buffer does not have as much data as you asked to see)\&.
773 \fBParameters:\fP
774 .RS 4
775 \fIbuffer\fP the evbuffer to peek into, 
777 \fIlen\fP the number of bytes to try to peek\&. If len is negative, we will try to fill as much of vec_out as we can\&. If len is negative and vec_out is not provided, we return the number of evbuffer_iovecs that would be needed to get all the data in the buffer\&. 
779 \fIstart_at\fP an \fBevbuffer_ptr\fP indicating the point at which we should start looking for data\&. NULL means, 'At the start of the
780    buffer\&.' 
782 \fIvec_out\fP an array of \fBevbuffer_iovec\fP 
784 \fIn_vec\fP the length of vec_out\&. If 0, we only count how many extents would be necessary to point to the requested amount of data\&. 
787 \fBReturns:\fP
788 .RS 4
789 The number of extents needed\&. This may be less than n_vec if we didn't need all the evbuffer_iovecs we were given, or more than n_vec if we would need more to return all the data that was requested\&. 
793 .SS "int evbuffer_prepend (struct \fBevbuffer\fP *buf, const void *data, size_tsize)"
796 Prepends data to the beginning of the evbuffer\&. 
798 \fBParameters:\fP
799 .RS 4
800 \fIbuf\fP the evbuffer to which to prepend data 
802 \fIdata\fP a pointer to the memory to prepend 
804 \fIsize\fP the number of bytes to prepend 
807 \fBReturns:\fP
808 .RS 4
809 0 if successful, or -1 otherwise 
813 .SS "int evbuffer_prepend_buffer (struct \fBevbuffer\fP *dst, struct \fBevbuffer\fP *src)"
816 Prepends all data from the src evbuffer to the beginning of the dst evbuffer\&. 
818 \fBParameters:\fP
819 .RS 4
820 \fIdst\fP the evbuffer to which to prepend data 
822 \fIsrc\fP the evbuffer to prepend; it will be emptied as a result 
825 \fBReturns:\fP
826 .RS 4
827 0 if successful, or -1 otherwise 
831 .SS "int evbuffer_ptr_set (struct \fBevbuffer\fP *buffer, struct \fBevbuffer_ptr\fP *ptr, size_tposition, enum \fBevbuffer_ptr_how\fPhow)"
834 Sets the search pointer in the buffer to position\&. If \fBevbuffer_ptr\fP is not initialized\&. This function can only be called with EVBUFFER_PTR_SET\&.
836 \fBParameters:\fP
837 .RS 4
838 \fIbuffer\fP the evbuffer to be search 
840 \fIptr\fP a pointer to a struct \fBevbuffer_ptr\fP 
842 \fIposition\fP the position at which to start the next search 
844 \fIhow\fP determines how the pointer should be manipulated\&. 
847 \fBReturns:\fP
848 .RS 4
849 0 on success or -1 otherwise 
853 .SS "unsigned char* evbuffer_pullup (struct \fBevbuffer\fP *buf, ev_ssize_tsize)"
856 Makes the data at the beginning of an evbuffer contiguous\&. 
858 \fBParameters:\fP
859 .RS 4
860 \fIbuf\fP the evbuffer to make contiguous 
862 \fIsize\fP the number of bytes to make contiguous, or -1 to make the entire buffer contiguous\&. 
865 \fBReturns:\fP
866 .RS 4
867 a pointer to the contiguous memory array 
871 .SS "int evbuffer_read (struct \fBevbuffer\fP *buffer, \fBevutil_socket_t\fPfd, inthowmuch)"
874 Read from a file descriptor and store the result in an evbuffer\&. 
876 \fBParameters:\fP
877 .RS 4
878 \fIbuffer\fP the evbuffer to store the result 
880 \fIfd\fP the file descriptor to read from 
882 \fIhowmuch\fP the number of bytes to be read 
885 \fBReturns:\fP
886 .RS 4
887 the number of bytes read, or -1 if an error occurred 
890 \fBSee also:\fP
891 .RS 4
892 \fBevbuffer_write()\fP 
896 .SS "char* evbuffer_readln (struct \fBevbuffer\fP *buffer, size_t *n_read_out, enum \fBevbuffer_eol_style\fPeol_style)"
899 Read a single line from an evbuffer\&. Reads a line terminated by an EOL as determined by the evbuffer_eol_style argument\&. Returns a newly allocated nul-terminated string; the caller must free the returned value\&. The EOL is not included in the returned string\&.
901 \fBParameters:\fP
902 .RS 4
903 \fIbuffer\fP the evbuffer to read from 
905 \fIn_read_out\fP if non-NULL, points to a size_t that is set to the number of characters in the returned string\&. This is useful for strings that can contain NUL characters\&. 
907 \fIeol_style\fP the style of line-ending to use\&. 
910 \fBReturns:\fP
911 .RS 4
912 pointer to a single line, or NULL if an error occurred 
916 .SS "int evbuffer_remove (struct \fBevbuffer\fP *buf, void *data, size_tdatlen)"
919 Read data from an evbuffer and drain the bytes read\&. If more bytes are requested than are available in the evbuffer, we only extract as many bytes as were available\&.
921 \fBParameters:\fP
922 .RS 4
923 \fIbuf\fP the evbuffer to be read from 
925 \fIdata\fP the destination buffer to store the result 
927 \fIdatlen\fP the maximum size of the destination buffer 
930 \fBReturns:\fP
931 .RS 4
932 the number of bytes read, or -1 if we can't drain the buffer\&. 
936 .SS "int evbuffer_remove_buffer (struct \fBevbuffer\fP *src, struct \fBevbuffer\fP *dst, size_tdatlen)"
939 Read data from an evbuffer into another evbuffer, draining the bytes from the source buffer\&. This function avoids copy operations to the extent possible\&.
941 If more bytes are requested than are available in src, the src buffer is drained completely\&.
943 \fBParameters:\fP
944 .RS 4
945 \fIsrc\fP the evbuffer to be read from 
947 \fIdst\fP the destination evbuffer to store the result into 
949 \fIdatlen\fP the maximum numbers of bytes to transfer 
952 \fBReturns:\fP
953 .RS 4
954 the number of bytes read 
958 .SS "int evbuffer_remove_cb (struct \fBevbuffer\fP *buffer, \fBevbuffer_cb_func\fPcb, void *cbarg)"
961 Remove a callback from an evbuffer, given the function and argument used to add it\&. 
963 \fBReturns:\fP
964 .RS 4
965 0 if a callback was removed, or -1 if no matching callback was found\&. 
969 .SS "int evbuffer_remove_cb_entry (struct \fBevbuffer\fP *buffer, struct evbuffer_cb_entry *ent)"
972 Remove a callback from an evbuffer, given a handle returned from evbuffer_add_cb\&. Calling this function invalidates the handle\&.
974 \fBReturns:\fP
975 .RS 4
976 0 if a callback was removed, or -1 if no matching callback was found\&. 
980 .SS "int evbuffer_reserve_space (struct \fBevbuffer\fP *buf, ev_ssize_tsize, struct \fBevbuffer_iovec\fP *vec, intn_vec)"
983 Reserves space in the last chain or chains of an evbuffer\&. Makes space available in the last chain or chains of an evbuffer that can be arbitrarily written to by a user\&. The space does not become available for reading until it has been committed with \fBevbuffer_commit_space()\fP\&.
985 The space is made available as one or more extents, represented by an initial pointer and a length\&. You can force the memory to be available as only one extent\&. Allowing more extents, however, makes the function more efficient\&.
987 Multiple subsequent calls to this function will make the same space available until \fBevbuffer_commit_space()\fP has been called\&.
989 It is an error to do anything that moves around the buffer's internal memory structures before committing the space\&.
991 NOTE: The code currently does not ever use more than two extents\&. This may change in future versions\&.
993 \fBParameters:\fP
994 .RS 4
995 \fIbuf\fP the evbuffer in which to reserve space\&. 
997 \fIsize\fP how much space to make available, at minimum\&. The total length of the extents may be greater than the requested length\&. 
999 \fIvec\fP an array of one or more \fBevbuffer_iovec\fP structures to hold pointers to the reserved extents of memory\&. 
1001 \fIn_vec\fP The length of the vec array\&. Must be at least 1; 2 is more efficient\&. 
1004 \fBReturns:\fP
1005 .RS 4
1006 the number of provided extents, or -1 on error\&. 
1009 \fBSee also:\fP
1010 .RS 4
1011 \fBevbuffer_commit_space()\fP 
1015 .SS "struct \fBevbuffer_ptr\fP evbuffer_search (struct \fBevbuffer\fP *buffer, const char *what, size_tlen, const struct \fBevbuffer_ptr\fP *start)"
1018 Search for a string within an evbuffer\&. 
1020 \fBParameters:\fP
1021 .RS 4
1022 \fIbuffer\fP the evbuffer to be searched 
1024 \fIwhat\fP the string to be searched for 
1026 \fIlen\fP the length of the search string 
1028 \fIstart\fP NULL or a pointer to a valid struct \fBevbuffer_ptr\fP\&. 
1031 \fBReturns:\fP
1032 .RS 4
1033 a struct \fBevbuffer_ptr\fP whose 'pos' field has the offset of the first occurrence of the string in the buffer after 'start'\&. The 'pos' field of the result is -1 if the string was not found\&. 
1037 .SS "struct \fBevbuffer_ptr\fP evbuffer_search_eol (struct \fBevbuffer\fP *buffer, struct \fBevbuffer_ptr\fP *start, size_t *eol_len_out, enum \fBevbuffer_eol_style\fPeol_style)"
1040 Search for an end-of-line string within an evbuffer\&. 
1042 \fBParameters:\fP
1043 .RS 4
1044 \fIbuffer\fP the evbuffer to be searched 
1046 \fIstart\fP NULL or a pointer to a valid struct \fBevbuffer_ptr\fP to start searching at\&. 
1048 \fIeol_len_out\fP If non-NULL, the pointed-to value will be set to the length of the end-of-line string\&. 
1050 \fIeol_style\fP The kind of EOL to look for; see \fBevbuffer_readln()\fP for more information 
1053 \fBReturns:\fP
1054 .RS 4
1055 a struct \fBevbuffer_ptr\fP whose 'pos' field has the offset of the first occurrence EOL in the buffer after 'start'\&. The 'pos' field of the result is -1 if the string was not found\&. 
1059 .SS "struct \fBevbuffer_ptr\fP evbuffer_search_range (struct \fBevbuffer\fP *buffer, const char *what, size_tlen, const struct \fBevbuffer_ptr\fP *start, const struct \fBevbuffer_ptr\fP *end)"
1062 Search for a string within part of an evbuffer\&. 
1064 \fBParameters:\fP
1065 .RS 4
1066 \fIbuffer\fP the evbuffer to be searched 
1068 \fIwhat\fP the string to be searched for 
1070 \fIlen\fP the length of the search string 
1072 \fIstart\fP NULL or a pointer to a valid struct \fBevbuffer_ptr\fP that indicates where we should start searching\&. 
1074 \fIend\fP NULL or a pointer to a valid struct \fBevbuffer_ptr\fP that indicates where we should stop searching\&. 
1077 \fBReturns:\fP
1078 .RS 4
1079 a struct \fBevbuffer_ptr\fP whose 'pos' field has the offset of the first occurrence of the string in the buffer after 'start'\&. The 'pos' field of the result is -1 if the string was not found\&. 
1083 .SS "int evbuffer_set_flags (struct \fBevbuffer\fP *buf, ev_uint64_tflags)"
1086 Change the flags that are set for an evbuffer by adding more\&. 
1088 \fBParameters:\fP
1089 .RS 4
1090 \fIbuffer\fP the evbuffer that the callback is watching\&. 
1092 \fIcb\fP the callback whose status we want to change\&. 
1094 \fIflags\fP One or more EVBUFFER_FLAG_* options 
1097 \fBReturns:\fP
1098 .RS 4
1099 0 on success, -1 on failure\&. 
1103 .SS "int evbuffer_unfreeze (struct \fBevbuffer\fP *buf, intat_front)"
1106 Re-enable calls that modify an evbuffer\&. 
1108 \fBParameters:\fP
1109 .RS 4
1110 \fIbuf\fP The buffer to un-freeze 
1112 \fIat_front\fP If true, we unfreeze the front of the buffer\&. If false, we unfreeze the back\&. 
1115 \fBReturns:\fP
1116 .RS 4
1117 0 on success, -1 on failure\&. 
1121 .SS "void evbuffer_unlock (struct \fBevbuffer\fP *buf)"
1124 Release the lock on an evbuffer\&. Has no effect if locking was not enabled with evbuffer_enable_locking\&. 
1125 .SS "int evbuffer_write (struct \fBevbuffer\fP *buffer, \fBevutil_socket_t\fPfd)"
1128 Write the contents of an evbuffer to a file descriptor\&. The evbuffer will be drained after the bytes have been successfully written\&.
1130 \fBParameters:\fP
1131 .RS 4
1132 \fIbuffer\fP the evbuffer to be written and drained 
1134 \fIfd\fP the file descriptor to be written to 
1137 \fBReturns:\fP
1138 .RS 4
1139 the number of bytes written, or -1 if an error occurred 
1142 \fBSee also:\fP
1143 .RS 4
1144 \fBevbuffer_read()\fP 
1148 .SS "int evbuffer_write_atmost (struct \fBevbuffer\fP *buffer, \fBevutil_socket_t\fPfd, ev_ssize_thowmuch)"
1151 Write some of the contents of an evbuffer to a file descriptor\&. The evbuffer will be drained after the bytes have been successfully written\&.
1153 \fBParameters:\fP
1154 .RS 4
1155 \fIbuffer\fP the evbuffer to be written and drained 
1157 \fIfd\fP the file descriptor to be written to 
1159 \fIhowmuch\fP the largest allowable number of bytes to write, or -1 to write as many bytes as we can\&. 
1162 \fBReturns:\fP
1163 .RS 4
1164 the number of bytes written, or -1 if an error occurred 
1167 \fBSee also:\fP
1168 .RS 4
1169 \fBevbuffer_read()\fP 
1173 .SH "Author"
1174 .PP 
1175 Generated automatically by Doxygen for libevent from the source code\&.