glibc/socket
Zack Weinberg f2bea4da2e Installed-header hygiene (BZ#20366): conditionally defined structures.
Several network-related structures are defined conditionally under
__USE_MISC, but unconditionally used by other headers.  The path of
least resistance is usually to condition the uses on __USE_MISC as
well.

	* sysdeps/mach/hurd/net/if_ppp.h
	* sysdeps/unix/sysv/linux/net/if_ppp.h:
        Only define struct ifpppstatsreq and struct ifpppcstatsreq
        if __USE_MISC is defined, to ensure struct ifreq is declared.

	* inet/netinet/ether.h: Condition all function prototypes
        on __USE_MISC, to ensure struct ether_addr is declared.

sys/socket.h defines struct osockaddr only under __USE_MISC, whereas
protocols/talkd.h requires it unconditionally.  Here it doesn't make
sense to condition the entire body of protocols/talkd.h on __USE_MISC.
Rather than complicate sys/socket.h with a __need macro or duplicate
the definition, I am introducing a new concept: tiny headers named
bits/types/TYPE.h that define TYPE and nothing else.  This can, I hope,
ultimately replace *all* the __need macros.  The guard macro for such
headers will be __TYPE_defined, just in case application or third-party
library code is looking at them.

	* socket/bits/types/struct_osockaddr.h: New header.
	* include/bits/types/struct_osockaddr.h: New wrapper.
	* socket/Makefile: Install the new header.
	* socket/sys/socket.h,  inet/protocols/talkd.h:
	Refer to bits/types/struct_osockaddr.h for the definition of
	struct osockaddr.
2016-09-23 08:43:56 -04:00
..
bits Installed-header hygiene (BZ#20366): conditionally defined structures. 2016-09-23 08:43:56 -04:00
sys Installed-header hygiene (BZ#20366): conditionally defined structures. 2016-09-23 08:43:56 -04:00
accept.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
accept4.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
bind.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
connect.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getpeername.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getsockname.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
getsockopt.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
have_sock_cloexec.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
isfdtype.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
listen.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
Makefile Installed-header hygiene (BZ#20366): conditionally defined structures. 2016-09-23 08:43:56 -04:00
opensock.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
recv.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
recvfrom.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
recvmmsg.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
recvmsg.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sa_len.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
send.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sendmmsg.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sendmsg.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sendto.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
setsockopt.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
shutdown.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
sockatmark.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
socket.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
socketpair.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
Versions Fix mq_notify socket, recv namespace (bug 18546). 2015-06-17 20:20:08 +00:00