lisp-network-server is a simple framework for writing Common Lisp network applications.
lisp-network-server framework takes care of listening on the network, accepting the connection and starting a new thread with handler functions of your network aware application.
Requirements:
· lisp-network-server requires a sufficiently recent (0.9.4 works)
· version of SBCL with:
- SB-THREAD (check *features*)
- SB-BSD-SOCKETS (see (require :sb-bsd-sockets))
· Currently, this means that you need to run the whole stack on a Linux 2.6 kernel due to the requirements for SB-THREAD, but work for supporting SB-THREAD for SBCL on Solaris is under way.
Installation:
Simply drop lns.lisp somewhere convenient do a (load "lns.lisp") and read lns.txt for detailed instructions.
What's New in This Release:
· More robust error handling that now catches broken network streams and aborts correctly.
· Log files aren't opened and threads started at read time, but by an explicit (lns:start-framework) call at runtime.
· This release adds a (daemon) function (exported), and has updated and improved documentation.
Product's homepage