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 52 53 54 55 56 57 58 59
|
This is a simple socket library for xlispstat. For more information
see
http://stat.umn.edu/~luke/xls/projects/sock/sock.html
Files:
Makefile.in Makefile configure template
README this file
_autoidx.lsp Autoload index
configure configuration script
configure.in autoconf input for making configure
echoserv.c simple echo server test
echotest.c simple echo client test
makefile.bc makefile for Win32, Borland C++ 5.0
makefile.vc makefile for Win32, Microsoft VC++ 5.0
sock.c C socket interface
sock.h include file for sock.c's interface
sock.lsp lisp code for the library
socktest.lsp some test examles
vcxlsock.def export definition for Win32, Microsoft VC++ 5.0
xlsock.c C code for the library
xlsock.def export definition for Win32, Borland C++ 5.0
xlsock.exp export definition for MacPPC, CW Pro 2
UNIX:
Executing
configure
make install
should make the library and install it in the Autoload
directory of the source tree.
After configure, make echoserv echotest will make the little
stand-alone tests.
Macintosh, CW Pro 2:
Get the project file from
http://stat.umn.edu/~luke/xls/projects/sock/MacPPC
and get CWGUSI from
ftp://sunsite.cnlab-switch.ch/software/platform/macos/src/mw_c/
I used version 1.8.1 but had to make two small changes for CW
Pro 2 _ I think they were fairly obvious. Build, and manually
install in the Autoload folder
Windows, Borland C++:
Adjust the defines at the top of makefile.bc and
make -f makefile.bc
Then manually install in Autoload directory.
|