Skip to content

Commit

Permalink
Fix cookie parsing.
Browse files Browse the repository at this point in the history
git-svn-id: svn://bknr.net/svn/trunk/thirdparty/chunga@4231 4281704c-cde7-0310-8518-8e2dc76b1ff0
  • Loading branch information
hanshuebner committed Feb 10, 2009
1 parent 9ce6637 commit 71f5aa0
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
20 changes: 20 additions & 0 deletions doc/index.html
Expand Up @@ -91,6 +91,7 @@ <h2>CHUNGA - Portable chunked streams for Common Lisp</h2>
<li><a href="#assert-char"><code>assert-char</code></a>
<li><a href="#skip-whitespace"><code>skip-whitespace</code></a>
<li><a href="#read-char*"><code>read-char*</code></a>
<li><a href="#peek-char*"><code>peek-char*</code></a>
<li><a href="#trim-whitespace"><code>trim-whitespace</code></a>
<li><a href="#*current-error-message*"><code>*current-error-message*</code></a>
<li><a href="#*accept-bogus-eols*"><code>*accept-bogus-eols*</code></a>
Expand Down Expand Up @@ -640,6 +641,25 @@ <h4><a name="parse" class=none>RFC 2616 parsing</a></h4>
<!-- End of entry for READ-CHAR* -->


<!-- Entry for PEEK-CHAR* -->

<p><br>[Function]<br><a class=none name='peek-char*'><b>peek-char*</b> <i>stream <tt>&amp;optional</tt> eof-error-p eof-value</i> =&gt; <i>boolean</i></a>
<blockquote><br>

Returns a true value if a character can be read from the binary
stream <code><i>stream</i></code>. If <code><i>eof-error-p</i></code>
has a true value, an error is signalled if no character remains to be
read. <code><i>eof-value</i></code> specifies the value to return
if <code><i>eof-error-p</i></code> is false and the end of the file
has been reached.
<p>
See <a href="#with-character-stream-semantics"><code>WITH-CHARACTER-STREAM-SEMANTICS</code></a>.

</blockquote>

<!-- End of entry for PEEK-CHAR* -->


<!-- Entry for TRIM-WHITESPACE -->

<p><br>[Function]<br><a class=none name='trim-whitespace'><b>trim-whitespace</b> <i>string</i> =&gt; <i>string'</i></a>
Expand Down
1 change: 1 addition & 0 deletions packages.lisp
Expand Up @@ -54,6 +54,7 @@
:input-chunking-unexpected-end-of-file
:make-chunked-stream
:read-http-headers
:peek-char*
:read-char*
:read-line*
:read-name-value-pair
Expand Down

0 comments on commit 71f5aa0

Please sign in to comment.