1 1.3 dholland /* $NetBSD: phase2.h,v 1.3 2015/09/06 06:01:01 dholland Exp $ */ 2 1.1 christos 3 1.1 christos /* 4 1.1 christos * Copyright (c) 1990,1991 Regents of The University of Michigan. 5 1.1 christos * All Rights Reserved. 6 1.1 christos * 7 1.1 christos * Permission to use, copy, modify, and distribute this software and 8 1.1 christos * its documentation for any purpose and without fee is hereby granted, 9 1.1 christos * provided that the above copyright notice appears in all copies and 10 1.1 christos * that both that copyright notice and this permission notice appear 11 1.1 christos * in supporting documentation, and that the name of The University 12 1.1 christos * of Michigan not be used in advertising or publicity pertaining to 13 1.1 christos * distribution of the software without specific, written prior 14 1.1 christos * permission. This software is supplied as is without expressed or 15 1.1 christos * implied warranties of any kind. 16 1.1 christos * 17 1.1 christos * This product includes software developed by the University of 18 1.1 christos * California, Berkeley and its contributors. 19 1.1 christos * 20 1.1 christos * Research Systems Unix Group 21 1.1 christos * The University of Michigan 22 1.1 christos * c/o Wesley Craig 23 1.1 christos * 535 W. William Street 24 1.1 christos * Ann Arbor, Michigan 25 1.1 christos * +1-313-764-2278 26 1.1 christos * netatalk (at) umich.edu 27 1.1 christos */ 28 1.1 christos 29 1.1 christos #ifndef _NETATALK_PHASE2_H_ 30 1.1 christos #define _NETATALK_PHASE2_H_ 31 1.1 christos 32 1.3 dholland #include <sys/ioccom.h> 33 1.1 christos #include <net/if_llc.h> 34 1.1 christos 35 1.1 christos #define llc_org_code llc_un.type_snap.org_code 36 1.1 christos #define llc_ether_type llc_un.type_snap.ether_type 37 1.1 christos 38 1.1 christos #define SIOCPHASE1 _IOW('i', 100, struct ifreq) /* AppleTalk phase 1 */ 39 1.1 christos #define SIOCPHASE2 _IOW('i', 101, struct ifreq) /* AppleTalk phase 2 */ 40 1.1 christos 41 1.2 elad #endif /* !_NETATALK_PHASE2_H_ */ 42