[BACK]Return to svr4_sockio.h CVS log [TXT][DIR] Up to [local] / sys / compat / svr4

Annotation of sys/compat/svr4/svr4_sockio.h, Revision 1.1

1.1     ! nbrk        1: /*     $OpenBSD: svr4_sockio.h,v 1.2 1996/08/02 20:35:41 niklas Exp $   */
        !             2: /*     $NetBSD: svr4_sockio.h,v 1.2 1995/07/04 23:00:13 christos Exp $  */
        !             3:
        !             4: /*
        !             5:  * Copyright (c) 1995 Christos Zoulas
        !             6:  * All rights reserved.
        !             7:  *
        !             8:  * Redistribution and use in source and binary forms, with or without
        !             9:  * modification, are permitted provided that the following conditions
        !            10:  * are met:
        !            11:  * 1. Redistributions of source code must retain the above copyright
        !            12:  *    notice, this list of conditions and the following disclaimer.
        !            13:  * 2. Redistributions in binary form must reproduce the above copyright
        !            14:  *    notice, this list of conditions and the following disclaimer in the
        !            15:  *    documentation and/or other materials provided with the distribution.
        !            16:  * 3. The name of the author may not be used to endorse or promote products
        !            17:  *    derived from this software without specific prior written permission
        !            18:  *
        !            19:  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
        !            20:  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
        !            21:  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
        !            22:  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
        !            23:  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
        !            24:  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
        !            25:  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
        !            26:  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
        !            27:  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
        !            28:  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
        !            29:  */
        !            30:
        !            31: #ifndef        _SVR4_SOCKIO_H_
        !            32: #define        _SVR4_SOCKIO_H_
        !            33:
        !            34: #define        SVR4_IFF_UP             0x0001
        !            35: #define        SVR4_IFF_BROADCAST      0x0002
        !            36: #define        SVR4_IFF_DEBUG          0x0004
        !            37: #define        SVR4_IFF_LOOPBACK       0x0008
        !            38: #define        SVR4_IFF_POINTOPOINT    0x0010
        !            39: #define        SVR4_IFF_NOTRAILERS     0x0020
        !            40: #define        SVR4_IFF_RUNNING        0x0040
        !            41: #define        SVR4_IFF_NOARP          0x0080
        !            42: #define        SVR4_IFF_PROMISC        0x0100
        !            43: #define        SVR4_IFF_ALLMULTI       0x0200
        !            44: #define        SVR4_IFF_INTELLIGENT    0x0400
        !            45: #define        SVR4_IFF_MULTICAST      0x0800
        !            46: #define        SVR4_IFF_MULTI_BCAST    0x1000
        !            47: #define        SVR4_IFF_UNNUMBERED     0x2000
        !            48: #define        SVR4_IFF_PRIVATE        0x8000
        !            49:
        !            50: struct svr4_ifreq {
        !            51: #define        SVR4_IFNAMSIZ   16
        !            52:        char    svr4_ifr_name[SVR4_IFNAMSIZ];
        !            53:        union {
        !            54:                struct  osockaddr       ifru_addr;
        !            55:                struct  osockaddr       ifru_dstaddr;
        !            56:                struct  osockaddr       ifru_broadaddr;
        !            57:                short                   ifru_flags;
        !            58:                int                     ifru_metric;
        !            59:                char                    ifru_data;
        !            60:                char                    ifru_enaddr[6];
        !            61:                int                     if_muxid[2];
        !            62:
        !            63:        } ifr_ifru;
        !            64:
        !            65: #define        svr4_ifr_addr                   ifr_ifru.ifru_addr
        !            66: #define        svr4_ifr_dstaddr                ifr_ifru.ifru_dstaddr
        !            67: #define        svr4_ifr_broadaddr              ifr_ifru.ifru_broadaddr
        !            68: #define        svr4_ifr_flags                  ifr_ifru.ifru_flags
        !            69: #define        svr4_ifr_metric                 ifr_ifru.ifru_metric
        !            70: #define        svr4_ifr_data                   ifr_ifru.ifru_data
        !            71: #define        svr4_ifr_enaddr                 ifr_ifru.ifru_enaddr
        !            72: #define        svr4_ifr_muxid                  ifr_ifru.ifru_muxid
        !            73:
        !            74: };
        !            75:
        !            76: struct svr4_ifconf {
        !            77:        int     svr4_ifc_len;
        !            78:        union {
        !            79:                caddr_t                  ifcu_buf;
        !            80:                struct svr4_ifreq       *ifcu_req;
        !            81:        } ifc_ifcu;
        !            82:
        !            83: #define        svr4_ifc_buf    ifc_ifcu.ifcu_buf
        !            84: #define        svr4_ifc_req    ifc_ifcu.ifcu_req
        !            85: };
        !            86:
        !            87: #define SVR4_SIOC      ('i' << 8)
        !            88:
        !            89: #define        SVR4_SIOCGIFFLAGS       SVR4_IOWR('i', 17, struct svr4_ifreq)
        !            90: #define        SVR4_SIOCGIFCONF        SVR4_IOWR('i', 20, struct svr4_ifconf)
        !            91: #define        SVR4_SIOCGIFNUM         SVR4_IOR('i', 87, int)
        !            92:
        !            93: #endif /* !_SVR4_SOCKIO_H_ */

CVSweb