1
0
Fork 0
mirror of https://repo.or.cz/socat.git synced 2025-07-11 22:23:24 +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

@ -135,6 +135,26 @@ const struct addrname addressnames[] = {
#if WITH_READLINE
{ "readline", &addr_readline },
#endif
#if (WITH_IP4 || WITH_IP6) && WITH_SCTP
{ "sctp", &addr_sctp_connect },
{ "sctp-connect", &addr_sctp_connect },
#if WITH_LISTEN
{ "sctp-l", &addr_sctp_listen },
{ "sctp-listen", &addr_sctp_listen },
#endif
{ "sctp4", &addr_sctp4_connect },
{ "sctp4-connect", &addr_sctp4_connect },
#if WITH_LISTEN
{ "sctp4-l", &addr_sctp4_listen },
{ "sctp4-listen", &addr_sctp4_listen },
#endif
{ "sctp6", &addr_sctp6_connect },
{ "sctp6-connect", &addr_sctp6_connect },
#if WITH_LISTEN
{ "sctp6-l", &addr_sctp6_listen },
{ "sctp6-listen", &addr_sctp6_listen },
#endif
#endif /* (WITH_IP4 || WITH_IP6) && WITH_SCTP */
#if WITH_GENERICSOCKET
{ "sendto", &xioaddr_socket_sendto },
#endif