mirror of
https://repo.or.cz/socat.git
synced 2025-07-12 14:43:24 +00:00
UDP-Lite (UDPlite) support
This commit is contained in:
parent
a846b94e6c
commit
2cfc39e9e5
21 changed files with 833 additions and 71 deletions
5
socat.c
5
socat.c
|
@ -604,6 +604,11 @@ void socat_version(FILE *fd) {
|
|||
#else
|
||||
fputs(" #undef WITH_DCCP\n", fd);
|
||||
#endif
|
||||
#ifdef WITH_UDPLITE
|
||||
fprintf(fd, " #define WITH_UDPLITE %d\n", WITH_UDPLITE);
|
||||
#else
|
||||
fputs(" #undef WITH_UDPLITE\n", fd);
|
||||
#endif
|
||||
#ifdef WITH_LISTEN
|
||||
fprintf(fd, " #define WITH_LISTEN %d\n", WITH_LISTEN);
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue