mirror of
https://repo.or.cz/socat.git
synced 2025-07-09 05:46:32 +00:00
Implementation of DCCP socket addresses
This commit is contained in:
parent
fc21e154b9
commit
a846b94e6c
17 changed files with 330 additions and 28 deletions
5
socat.c
5
socat.c
|
@ -599,6 +599,11 @@ void socat_version(FILE *fd) {
|
|||
#else
|
||||
fputs(" #undef WITH_SCTP\n", fd);
|
||||
#endif
|
||||
#ifdef WITH_DCCP
|
||||
fprintf(fd, " #define WITH_DCCP %d\n", WITH_DCCP);
|
||||
#else
|
||||
fputs(" #undef WITH_DCCP\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