Skip to content

Commit

Permalink
release 1.2.37
Browse files Browse the repository at this point in the history
  • Loading branch information
Hans Huebner committed Dec 11, 2016
1 parent 81f97fc commit 10c0158
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 1.2.37
2016-12-11
Support listening on random port number (Lucien Pullen)

Version 1.2.36
2016-12-08
Compare on the path-string. (matthieupeeters)
Expand Down
2 changes: 1 addition & 1 deletion hunchentoot.asd
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

(defsystem :hunchentoot
:serial t
:version "1.2.36"
:version "1.2.37"
:description "Hunchentoot is a HTTP server based on USOCKET and
BORDEAUX-THREADS. It supports HTTP 1.1, serves static files, has a
simple framework for user-defined handlers and can be extended
Expand Down
17 changes: 12 additions & 5 deletions www/hunchentoot-doc.html
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ <h3 xmlns=""><a class="none" name="install">Download and installation</a></h3>
Hunchentoot itself together with this documentation can be
downloaded from
<a href="http://weitz.de/files/hunchentoot.tar.gz">http://weitz.de/files/hunchentoot.tar.gz</a>.
The current version is 1.2.36.
The current version is 1.2.37.
</p>
<p>
The preferred method to compile and load Hunchentoot is via <a href="http://www.cliki.net/asdf">ASDF</a>. If you want to avoid
Expand Down Expand Up @@ -343,10 +343,17 @@ <h4 xmlns=""><a name="acceptors">Acceptors</a></h4>
function <code><a href="#start">START</a></code> to start it (and
<code><a href="#stop">STOP</a></code> to stop it). Use the
<code xmlns="http://www.w3.org/1999/xhtml">:port</code> initarg if you don't want to listen
on the default http port 80. There are other initargs most
of which you probably won't need very often. They are
explained in detail in the docstrings of the slot
definitions for this class.
on the default http port 80. If 0 is specified for the
port, the system chooses a random port to listen on. The
port number choosen can be retrieved using the
<code><a href="#acceptor-port">ACCEPTOR-PORT</a></code> accessor. The port
number chosen is retained across stopping and starting the
acceptor.
<p xmlns="http://www.w3.org/1999/xhtml">
There are other initargs most of which you probably
won't need very often. They are explained in detail
in the docstrings of the slot definitions.
</p>
<p xmlns="http://www.w3.org/1999/xhtml">
Unless you are in a Lisp without MP capabilities, you can
have several active instances of
Expand Down

0 comments on commit 10c0158

Please sign in to comment.