mirror of
https://repo.or.cz/socat.git
synced 2025-07-15 15:43:24 +00:00
New feature POSIX message queues (MQ)
This commit is contained in:
parent
e1aadc577d
commit
7d6295114b
21 changed files with 876 additions and 14 deletions
5
socat.c
5
socat.c
|
@ -600,6 +600,11 @@ void socat_version(FILE *fd) {
|
|||
#else
|
||||
fputs(" #undef WITH_LISTEN\n", fd);
|
||||
#endif
|
||||
#ifdef WITH_POSIXMQ
|
||||
fprintf(fd, " #define WITH_POSIXMQ %d\n", WITH_POSIXMQ);
|
||||
#else
|
||||
fputs(" #undef WITH_POSIXMQ\n", fd);
|
||||
#endif
|
||||
#ifdef WITH_SOCKS4
|
||||
fprintf(fd, " #define WITH_SOCKS4 %d\n", WITH_SOCKS4);
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue