blob: 51d8c1b20a534a897cc11871d59ca928759054cf [file] [log] [blame]
Gerhard Riegerb8195722008-01-27 13:00:08 +01001
2Q: What is the clue of socat?
3
4A: socat probably doesn't have any clue. It is more an attempt to smoothly
5integrate similar I/O features that are usually handled differently under
6UNIX.
7
8
9Q: What does the prefix XIO mean?
10
11A: XIO means "extended input/output". It is a library/API that provides a
12common way for handling files, sockets and other forms of I/O. Its advantage is
13that the application may reduce its I/O to open / read+write / close calls,
14while the user controls all I/O details (and even basic process properties) by
15packing options into the filename string. This is the basic part of socat.
16
17
18Q: Is there a Windows port of socat available?
19
20A: Try with Cygwin from http://www.cygwin.com/, or upgrade to Linux.
21
22
23Q: I succeeded to configure and make socat, but ./test.sh says something
24like:
25./test.sh: No such file or directory
26
Gerhard Riegerfbd72c22018-03-28 18:21:31 +020027A: You need a bash shell in your executable path (locations in $PATH)
Gerhard Riegerb8195722008-01-27 13:00:08 +010028
29
30Q: configure disables readline / openssl / libwrap support because it does not
31find an include file / the library. How can I tell configure where these files
32are?
33
34A: For include locations, use the environment variable CPPFLAGS, for library
35locations use LIBS, e.g.:
36 export CPPFLAGS="-I/home/user/ssl/include"
37 export LIBS="-L/home/user/ssl/lib"
38On some systems (SunOS), you might also need to set LD_LIBRARY_PATH:
39 export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/home/user/ssl/lib"
40Then try again:
41 make distclean; ./configure; make
42
43
44Q: I succeeded to make socat, but the test.sh script fails for many tests.
45Is my socat build corrupt?
46
47A: Probably your socat program is ok; the tests have been developed on Linux
482.4, and there they usually succeed.
49But the following OS differences result in errors on non Linux systems:
50 * Linux allows to bind a socket to any address of range 127.0.0.0/8, not
51 only 127.0.0.1. Some tests are built on this feature, but they might fail on
52 other systems.
53 * Your OS might have no IP6 implementation
54 * MacOS X has some difficulties, e.g. distinguishing sockets and pipes.
55 * the OpenSSL tests require OpenSSL support by socat, must have openssl in
56 $PATH, and "openssl s_server ..." needs enough entropy to generate a key.
57
58
59Q: When I specify a dual address (two partial addresses linked with "!!") on
60the command line, I get some message "event not found", and my shell history
61has the line truncated. Not even protecting the '!'s with '\' helps.
62
63A: '!' is appearently used by your shell as history expansion character. Say
64"set +H" and add this line to your (bash) profile.
65
66
67Q: On Solaris, socat was built successfully, but when started, it gets killed
68with something like "ld.so.1: ./socat: fatal: libreadline.so.4: open failed: no
69such file or directory"
70
71A: The configure script finds your libreadline, but the runtime loader
72doesn't. Add the directory where the library resides to your LD_LIBRARY_PATH
73variable, e.g.:
74 LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/sfw/lib/
75 make distclean; ./configure; make
76
77
78Q: On Solaris, socat was built successfully, but when started, an assertion
79fails: "xioinitialize.c:25: failed assertion `3 << opt_crdly.arg3 == CRDLY'
80
81A: Probably, in a second attempt you set the correct LD_LIBARY_PATH for socat,
82but it had not been set during the ./configure run, or you did not "make clean"
83before running configure. Try it again:
84 make distclean; ./configure; make
Gerhard Rieger17600da2008-02-07 23:02:49 +010085
86
87Q: A socat process, run in background from an interactive shell, is always
88stopped with all its child processes after about 5 minutes. killall -9 socat is
89required to clean the system and allow socat to be started again.
90
91A: The terminal (window) might have the TOSTOP flag set and one of the socat
92processes wants to write to the terminal. Clear this flag in your shell:
93 stty -tostop
94and start socat again.
95Thanks to Philippe Teuwen for reporting this situation.
96