OpenSSL client checks SubjectAltName IP addresses
[socat.git] / FILES
blob247e738e45aa690f839e170576750705b887c27a
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
27 * xio.help: reference manual of the address definitions (xioopen function)
29 * daemon.sh: example shell script for running socat as TCP relay daemon
30 * ftp.sh: example shell based ftp client, using socat for transport
31 * mail.sh: example shell based smtp client, for execution by socat
33 * gatherinfo.sh: shell script for gathering info about platform and socat
34 implementation
36 * server.pem: a self signed test cerificate, for self test only
39 The source code system:
41 * configure: the autoconf generated configurator script
43 * Makefile.in: the Makefile source input to configure
45 * config.h.in: the config.h source input to configure
47 * Config/config.<platform>.h: sample config.h for platform.
48 * Config/Makefile.<platform>: sample Makefile for platform.
49 Copy the appropriate files to ./config.h and ./Makefile if configure fails
51 * socat.c: the main C source, including option parsing, general control, and
52 the data shuffler
54 * xio-*.c, xio-*.h: the source of the different address type implementations
55 with all their modes and options
57 * xio*.c, xio*.h: the source of the xio API and xio utilities
59 * filan.c, filan.h: file descriptor analyzer function
61 * dalan.c, dalan.h: data language, a most primitive subset of what should
62 become a language for describing/generating all kinds of binary data.
64 * error.c, error.h: the logging subsystem
66 * sycls.c, sycls.h: explicit system call and C library trace functions
67 * sslcls.c, sslcls.h: explicit openssl call trace functions
69 * xioconfig.h: ensures some dependencies between configure WITH defines; to be
70 included immediately after config.h
72 * sysutils.c, sysutils.h: some more general system (socket, IP) related
73 functions, e.g. converting socket addresses to human readable form
75 * utils.c, utils.h: useful additions to C library; currently memdup, binary
76 search, and setenv.
78 * mytypes.h: some types and macros I miss in C89
80 * test.sh: an incomplete attempt to automate tests of socat
82 * compat.h: ensure some features that might be missing on some platforms