---------------------------------------------------------- --------- LIBSOCKET --------- Little socket library to avoid writing the same code about manage simple socket connection ---------------------------------------------------------- This software is free. It uses the GPL (Gnu Public Licence) licence of the Free Software Foundation (FSF). Source files of LIBIOFILE are provided in the src directory. ---------------------------------------------------------- How to use it ? --------------- Adapt the make bash script to work with your Linux WS and launch it to produce the library that you'll link to your projects. Command line running to make the library: cd src vi make ./make cp libsocket.a $static_lib_path cp *.h $include_path Command line running to test the server: cd src/server ./make ./server [port] & (default port is 1616) telnet 127.0.0.1 [port] help hello get all bye Command line running to test the client: cd src/server ./make ./server [port] & (default port is 1616) cd ../client ./make ./client [port] help hello get all bye Read the files contained in 'doc' directory or the headers contained into 'src' directory to know how many functions this library contain and how to call them and what they do. ---------------------------------------------------------- Copyright (C) 2000 Roberto A. Foglietta Copyright (C) 2002 GEA-Automotive ------------------------------------- This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.