diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-07-20 07:53:39 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-07-20 07:53:39 +0000 |
commit | b82276d1f5138b267031d43aec76748544ea9f23 (patch) | |
tree | 944bb5cf6eece656f3bd6d806bba2c3c6aa550ec /inet | |
parent | d8433bd075f7384e5d34940b0da89d8a1a8aab5d (diff) | |
download | glibc-b82276d1f5138b267031d43aec76748544ea9f23.tar.gz glibc-b82276d1f5138b267031d43aec76748544ea9f23.tar.xz glibc-b82276d1f5138b267031d43aec76748544ea9f23.zip |
Update.
Define struct group_req and struct group_source_req.
Diffstat (limited to 'inet')
-rw-r--r-- | inet/netinet/in.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/inet/netinet/in.h b/inet/netinet/in.h index 7ec6741eb1..6aee842530 100644 --- a/inet/netinet/in.h +++ b/inet/netinet/in.h @@ -273,6 +273,29 @@ struct ipv6_mreq }; +/* Multicast group request. */ +struct group_req + { + /* Interface index. */ + uint32_t gr_interface; + + /* Group address. */ + struct sockaddr_storage gr_group; + }; + +struct group_source_req + { + /* Interface index. */ + uint32_t gsr_interface; + + /* Group address. */ + struct sockaddr_storage gsr_group; + + /* Source address. */ + struct sockaddr_storage gsr_source; + }; + + /* Get system-specific definitions. */ #include <bits/in.h> |