1
0
Fork 0
mirror of https://repo.or.cz/socat.git synced 2025-07-28 21:32:56 +00:00

merged feature sctp streams

This commit is contained in:
Gerhard Rieger 2008-09-22 23:21:26 +02:00
parent d78b080ef0
commit 91057b0b68
17 changed files with 388 additions and 17 deletions

View file

@ -438,6 +438,11 @@ void socat_version(FILE *fd) {
#else
fputs(" #undef WITH_UDP\n", fd);
#endif
#ifdef WITH_SCTP
fprintf(fd, " #define WITH_SCTP %d\n", WITH_SCTP);
#else
fputs(" #undef WITH_SCTP\n", fd);
#endif
#ifdef WITH_LISTEN
fprintf(fd, " #define WITH_LISTEN %d\n", WITH_LISTEN);
#else