Browse Source

Delete option COMPAT_43: support for pre-sa_len binaries has been obsolete

for a couple decades.  Keep the OSIOCGIFCONF ioctl to support COMPAT_LINUX
but move the rest of the Linux-specific ioctl() handling into linux_socket.c
This lets struct osockaddr finally move from sys/socket.h to protocols/talkd.h
ok krw@ deraadt@ mpi@
OPENBSD_5_7
guenther 9 years ago
parent
commit
91e3ebd0a0
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      src/include/protocols/talkd.h

+ 6
- 1
src/include/protocols/talkd.h View File

@ -1,4 +1,4 @@
/* $OpenBSD: talkd.h,v 1.4 2004/01/22 21:48:02 espie Exp $ */
/* $OpenBSD: talkd.h,v 1.5 2015/01/21 02:23:14 guenther Exp $ */
/* $NetBSD: talkd.h,v 1.5 1995/03/04 07:59:30 cgd Exp $ */
/*
@ -53,6 +53,11 @@
* stream connection through which the conversation takes place.
*/
struct osockaddr {
unsigned short sa_family; /* address family */
char sa_data[14]; /* up to 14 bytes of direct address */
};
/*
* Client->server request message format.
*/


Loading…
Cancel
Save