~ubuntu-branches/ubuntu/oneiric/socat/oneiric

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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
The socat distribution contains the following files:

* README: an introduction to socat

* FILES: a navigator through the socat distribution (this file)

* EXAMPLES: a collection of simple examples how to use socat.

* COPYING: what you and others are allowed to do with socat.

* PORTING: instructions and tips if you want to try socat on a new platform.

* BUGREPORTS: instructions what to do with problems and contributions.

* SECURITY: tips if you want to use socat in a security relevant environment.

* DEVELOPMENT: infos for programmers

* VERSION: the version of the socat distribution, for inclusion during
compilation

* CHANGES: what happened since first public release

* socat.1: man page of socat
* socat.html: html version of man page
* xio.help: reference manual of the address definitions (xioopen function)

* daemon.sh: example shell script for running socat as TCP relay daemon
* ftp.sh: example shell based ftp client, using socat for transport
* mail.sh: example shell based smtp client, for execution by socat

* gatherinfo.sh: shell script for gathering info about platform and socat
implementation

* server.pem: a self signed test cerificate, for self test only


The source code system:

* configure: the autoconf generated configurator script

* Makefile.in: the Makefile source input to configure

* config.h.in: the config.h source input to configure

* Config/config.<platform>.h: sample config.h for platform.
* Config/Makefile.<platform>: sample Makefile for platform.
Copy the appropriate files to ./config.h and ./Makefile if configure fails

* socat.c: the main C source, including option parsing, general control, and
the data shuffler

* xio-*.c, xio-*.h: the source of the different address type implementations
with all their modes and options

* xio*.c, xio*.h: the source of the xio API and xio utilities

* filan.c, filan.h: file descriptor analyzer function

* dalan.c, dalan.h: data language, a most primitive subset of what should
become a language for describing/generating all kinds of binary data.

* error.c, error.h: the logging subsystem

* sycls.c, sycls.h: explicit system call and C library trace functions
* sslcls.c, sslcls.h: explicit openssl call trace functions

* xioconfig.h: ensures some dependencies between configure WITH defines; to be
included immediately after config.h

* sysutils.c, sysutils.h: some more general system (socket, IP) related
functions, e.g. converting socket addresses to human readable form

* utils.c, utils.h: useful additions to C library; currently memdup, binary
search, and setenv.

* mytypes.h: some types and macros I miss in C89

* test.sh: an incomplete attempt to automate tests of socat

* compat.h: ensure some features that might be missing on some platforms