X7ROOT File Manager
Current Path:
/usr/share/doc/neon-0.30.0/html
usr
/
share
/
doc
/
neon-0.30.0
/
html
/
π
..
π
api.html
(2.46 KB)
π
biblio.html
(4.59 KB)
π
compliance.html
(5.09 KB)
π
features.html
(4.59 KB)
π
index.html
(10.81 KB)
π
intro.html
(3.52 KB)
π
ref.html
(7.36 KB)
π
refalloc.html
(4.87 KB)
π
refauth.html
(5.84 KB)
π
refbuf.html
(3.46 KB)
π
refbufapp.html
(4.97 KB)
π
refbufcr.html
(3.24 KB)
π
refbufdest.html
(3.94 KB)
π
refbufutil.html
(3.84 KB)
π
refcert.html
(5.8 KB)
π
refclicert.html
(7.8 KB)
π
refconfig.html
(5.06 KB)
π
referr.html
(4.26 KB)
π
reffeat.html
(4.02 KB)
π
refgetst.html
(3.33 KB)
π
refi18n.html
(3.75 KB)
π
refiaddr.html
(8.93 KB)
π
refneon.html
(12.31 KB)
π
refopts.html
(6.22 KB)
π
refproxy.html
(9.04 KB)
π
refreq.html
(8.51 KB)
π
refreqbody.html
(4.27 KB)
π
refreqflags.html
(4.35 KB)
π
refreqhdr.html
(3.71 KB)
π
refresolve.html
(7.31 KB)
π
refresphdr.html
(5.13 KB)
π
refsess.html
(6.69 KB)
π
refsessflags.html
(5.13 KB)
π
refshave.html
(2.82 KB)
π
refsockinit.html
(6.57 KB)
π
refsslca.html
(3.89 KB)
π
refsslcert2.html
(3.01 KB)
π
refsslcertio.html
(5.48 KB)
π
refssldname.html
(3.78 KB)
π
refsslvfy.html
(7.1 KB)
π
refstatus.html
(4.17 KB)
π
reftok.html
(3.94 KB)
π
refvers.html
(3.3 KB)
π
refxml.html
(2.97 KB)
π
security.html
(6.81 KB)
π
using.html
(4.74 KB)
π
xml.html
(11.03 KB)
Editing: refreqbody.html
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>ne_set_request_body_buffer</title><link rel="stylesheet" type="text/css" href="../manual.css"><meta name="generator" content="DocBook XSL Stylesheets V1.78.1"><link rel="home" href="index.html" title="neon HTTP/WebDAV client library"><link rel="up" href="ref.html" title="neon API reference"><link rel="prev" href="refreqflags.html" title="ne_set_request_flag"><link rel="next" href="refauth.html" title="ne_set_server_auth"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">ne_set_request_body_buffer</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="refreqflags.html">Prev</a>Β </td><th width="60%" align="center">neon API reference</th><td width="20%" align="right">Β <a accesskey="n" href="refauth.html">Next</a></td></tr></table><hr></div><div class="refentry"><a name="refreqbody"></a><div class="titlepage"></div><div class="refnamediv"><h2>Name</h2><p>ne_set_request_body_buffer, ne_set_request_body_fd, ne_set_request_body_fd64 β include a message body with a request</p></div><div class="refsynopsisdiv"><h2>Synopsis</h2><div class="funcsynopsis"><pre class="funcsynopsisinfo">#include <ne_request.h></pre><table border="0" class="funcprototype-table" summary="Function synopsis" style="cellspacing: 0; cellpadding: 0;"><tr><td><code class="funcdef">void <b class="fsfunc">ne_set_request_body_buffer</b>(</code></td><td>ne_request *<var class="pdparam">req</var>, </td></tr><tr><td>Β </td><td>const char *<var class="pdparam">buf</var>, </td></tr><tr><td>Β </td><td>size_t <var class="pdparam">count</var><code>)</code>;</td></tr></table><div class="funcprototype-spacer">Β </div><table border="0" class="funcprototype-table" summary="Function synopsis" style="cellspacing: 0; cellpadding: 0;"><tr><td><code class="funcdef">int <b class="fsfunc">ne_set_request_body_fd</b>(</code></td><td>ne_request *<var class="pdparam">req</var>, </td></tr><tr><td>Β </td><td>int <var class="pdparam">fd</var>, </td></tr><tr><td>Β </td><td>off_t <var class="pdparam">begin</var>, </td></tr><tr><td>Β </td><td>off_t <var class="pdparam">length</var><code>)</code>;</td></tr></table><div class="funcprototype-spacer">Β </div></div></div><div class="refsect1"><a name="idm140368849848704"></a><h2>Description</h2><p>The <code class="function">ne_set_request_body_buffer</code> function specifies that a message body should be included with the body, which is stored in the <code class="parameter">count</code> bytes buffer <code class="parameter">buf</code>.</p><p>The <code class="function">ne_set_request_body_fd</code> function can be used to include a message body with a request which is read from a file descriptor. The body is read from the file descriptor <code class="parameter">fd</code>, which must be a associated with a seekable file (not a pipe, socket, or FIFO). <code class="parameter">count</code> bytes are read, beginning at offset <code class="parameter">begin</code> (hence, passing <code class="parameter">begin</code> as zero means the body is read from the beginning of the file).</p><p>For all the above functions, the source of the request body must survive until the request has been dispatched; neither the memory buffer passed to <code class="function">ne_set_request_body_buffer</code> nor the file descriptor passed to <code class="function">ne_set_request_body_fd</code> are copied internally.</p></div><div class="refsect1"><a name="idm140368849839904"></a><h2>See also</h2><p><a class="xref" href="refreq.html#ne_request_create">ne_request_create</a></p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="refreqflags.html">Prev</a>Β </td><td width="20%" align="center"><a accesskey="u" href="ref.html">Up</a></td><td width="40%" align="right">Β <a accesskey="n" href="refauth.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">ne_set_request_flagΒ </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">Β ne_set_server_auth</td></tr></table></div></body></html>
Upload File
Create Folder