blob: 0787fd672b9e564f4505c5a9b6665a8e8edf6c85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
.TH "evbuffer_iovec" 3 "Tue Jan 27 2015" "libevent" \" -*- nroff -*-
.ad l
.nh
.SH NAME
evbuffer_iovec \-
.PP
Describes a single extent of memory inside an evbuffer\&.
.SH SYNOPSIS
.br
.PP
.PP
\fC#include <buffer\&.h>\fP
.SS "Data Fields"
.in +1c
.ti -1c
.RI "void * \fBiov_base\fP"
.br
.RI "\fIThe start of the extent of memory\&. \fP"
.ti -1c
.RI "size_t \fBiov_len\fP"
.br
.RI "\fIThe length of the extent of memory\&. \fP"
.in -1c
.SH "Detailed Description"
.PP
Describes a single extent of memory inside an evbuffer\&.
Used for direct-access functions\&.
.PP
\fBSee also:\fP
.RS 4
\fBevbuffer_reserve_space\fP, \fBevbuffer_commit_space\fP, \fBevbuffer_peek\fP
.RE
.PP
.SH "Field Documentation"
.PP
.SS "void* evbuffer_iovec::iov_base"
.PP
The start of the extent of memory\&.
.SS "size_t evbuffer_iovec::iov_len"
.PP
The length of the extent of memory\&.
.SH "Author"
.PP
Generated automatically by Doxygen for libevent from the source code\&.
|