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