Version 1.8.0.0
[socat.git] / FILES
blob9961ca6c0575bc0dfe5b2d9d1e9d64df4440a43e
2 The socat distribution contains the following files:
4 * README: an introduction to socat
6 * FILES: a navigator through the socat distribution (this file)
8 * EXAMPLES: a collection of simple examples how to use socat.
10 * COPYING: what you and others are allowed to do with socat.
12 * PORTING: instructions and tips if you want to try socat on a new platform.
14 * BUGREPORTS: instructions what to do with problems and contributions.
16 * SECURITY: tips if you want to use socat in a security relevant environment.
18 * DEVELOPMENT: infos for programmers
20 * VERSION: the version of the socat distribution, for inclusion during
21 compilation
23 * CHANGES: what happened since first public release
25 * socat.1: man page of socat
26 * socat.html: html version of man page
28 * daemon.sh: example shell script for running socat as TCP relay daemon
29 * ftp.sh: example shell based ftp client, using socat for transport
30 * mail.sh: example shell based smtp client, for execution by socat
32 * gatherinfo.sh: shell script for gathering info about platform and socat
33 implementation
35 * server.pem: a self signed test cerificate, for self test only
38 The source code system:
40 * configure: the autoconf generated configurator script
42 * Makefile.in: the Makefile source input to configure
44 * config.h.in: the config.h source input to configure
46 * Config/config.<platform>.h: sample config.h for platform.
47 * Config/Makefile.<platform>: sample Makefile for platform.
48 Copy the appropriate files to ./config.h and ./Makefile if configure fails
50 * socat.c: the main C source, including option parsing, general control, and
51 the data shuffler
53 * xio-*.c, xio-*.h: the source of the different address type implementations
54 with all their modes and options
56 * xio*.c, xio*.h: the source of the xio API and xio utilities
58 * filan.c, filan.h: file descriptor analyzer function
60 * dalan.c, dalan.h: data language, a most primitive subset of what should
61 become a language for describing/generating all kinds of binary data.
63 * error.c, error.h: the logging subsystem
65 * sycls.c, sycls.h: explicit system call and C library trace functions
66 * sslcls.c, sslcls.h: explicit openssl call trace functions
68 * xioconfig.h: ensures some dependencies between configure WITH defines; to be
69 included immediately after config.h
71 * sysutils.c, sysutils.h: some more general system (socket, IP) related
72 functions, e.g. converting socket addresses to human readable form
74 * utils.c, utils.h: useful additions to C library; currently memdup, binary
75 search, and setenv.
77 * mytypes.h: some types and macros I miss in C89
79 * test.sh: an incomplete attempt to automate tests of socat
81 * compat.h: ensure some features that might be missing on some platforms