1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

Define IPPROTO_IPV6 and IPV6_V6ONLY.

* libguile/socket.c (scm_init_socket): Define IPPROTO_IPV6 and IPV6_V6ONLY.
* doc/ref/posix.texi (Network Sockets and Communication): Document them.
This commit is contained in:
Ludovic Courtès 2022-07-04 11:49:31 +02:00
parent 6da4be170a
commit abd39f3328
2 changed files with 18 additions and 0 deletions

View file

@ -1712,6 +1712,9 @@ scm_init_socket ()
#ifdef IPPROTO_IP
scm_c_define ("IPPROTO_IP", scm_from_int (IPPROTO_IP));
#endif
#ifdef IPPROTO_IPV6
scm_c_define ("IPPROTO_IPV6", scm_from_int (IPPROTO_IPV6));
#endif
#ifdef IPPROTO_TCP
scm_c_define ("IPPROTO_TCP", scm_from_int (IPPROTO_TCP));
#endif
@ -1801,6 +1804,10 @@ scm_init_socket ()
scm_c_define ("IP_MULTICAST_IF", scm_from_int ( IP_MULTICAST_IF));
#endif
#ifdef IPV6_V6ONLY
scm_c_define ("IPV6_V6ONLY", scm_from_int (IPV6_V6ONLY));
#endif
scm_add_feature ("socket");
#include "socket.x"