📄 if_media.h
字号:
/* $OpenBSD: if_media.h,v 1.6 2000/03/21 23:18:13 mickey Exp $ *//* $NetBSD: if_media.h,v 1.11 1998/08/12 23:23:29 thorpej Exp $ *//*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility, * NASA Ames Research Center. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the NetBSD * Foundation, Inc. and its contributors. * 4. Neither the name of The NetBSD Foundation nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. *//* * Copyright (c) 1997 * Jonathan Stone and Jason R. Thorpe. All rights reserved. * * This software is derived from information provided by Matt Thomas. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by Jonathan Stone * and Jason R. Thorpe for the NetBSD Project. * 4. The names of the authors may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */#ifndef _NET_IF_MEDIA_H_#define _NET_IF_MEDIA_H_/* * Prototypes and definitions for BSD/OS-compatible network interface * media selection. * * Where it is safe to do so, this code strays slightly from the BSD/OS * design. Software which uses the API (device drivers, basically) * shouldn't notice any difference. * * Many thanks to Matt Thomas for providing the information necessary * to implement this interface. */#ifdef _KERNEL#include <sys/queue.h>/* * Driver callbacks for media status and change requests. */typedef int (*ifm_change_cb_t) __P((struct ifnet *ifp));typedef void (*ifm_stat_cb_t) __P((struct ifnet *ifp, struct ifmediareq *req));/* * In-kernel representation of a single supported media type. */struct ifmedia_entry { LIST_ENTRY(ifmedia_entry) ifm_list; int ifm_media; /* description of this media attachment */ int ifm_data; /* for driver-specific use */ void *ifm_aux; /* for driver-specific use */};/* * One of these goes into a network interface's softc structure. * It is used to keep general media state. */struct ifmedia { int ifm_mask; /* mask of changes we don't care about */ int ifm_media; /* current user-set media word */ struct ifmedia_entry *ifm_cur; /* currently selected media */ LIST_HEAD(, ifmedia_entry) ifm_list; /* list of all supported media */ ifm_change_cb_t ifm_change; /* media change driver callback */ ifm_stat_cb_t ifm_status; /* media status driver callback */};/* Initialize an interface's struct if_media field. */void ifmedia_init __P((struct ifmedia *ifm, int dontcare_mask, ifm_change_cb_t change_callback, ifm_stat_cb_t status_callback));/* Add one supported medium to a struct ifmedia. */void ifmedia_add __P((struct ifmedia *ifm, int mword, int data, void *aux));/* Add an array (of ifmedia_entry) media to a struct ifmedia. */void ifmedia_list_add(struct ifmedia *mp, struct ifmedia_entry *lp, int count);/* Set default media type on initialization. */void ifmedia_set __P((struct ifmedia *ifm, int mword));/* Common ioctl function for getting/setting media, called by driver. */int ifmedia_ioctl __P((struct ifnet *ifp, struct ifreq *ifr, struct ifmedia *ifm, u_long cmd));/* Locate a media entry */struct ifmedia_entry *ifmedia_match __P((struct ifmedia *ifm, int flags, int mask));/* Delete all media for a given media instance */void ifmedia_delete_instance __P((struct ifmedia *, int));#endif /*_KERNEL *//* * if_media Options word: * Bits Use * ---- ------- * 0-4 Media variant MAX SUBTYPE == 31! * 5-7 Media type * 8-15 Type specific options * 16-19 RFU * 20-27 Shared (global) options * 28-31 Instance *//* * Ethernet */#define IFM_ETHER 0x00000020#define IFM_10_T 3 /* 10BaseT - RJ45 */#define IFM_10_2 4 /* 10Base2 - Thinnet */#define IFM_10_5 5 /* 10Base5 - AUI */#define IFM_100_TX 6 /* 100BaseTX - RJ45 */#define IFM_100_FX 7 /* 100BaseFX - Fiber */#define IFM_100_T4 8 /* 100BaseT4 - 4 pair cat 3 */#define IFM_100_VG 9 /* 100VG-AnyLAN */#define IFM_100_T2 10 /* 100BaseT2 */#define IFM_1000_FX 11 /* 1000BaseFX - gigabit over fiber */#define IFM_10_STP 12 /* 10BaseT over shielded TP */#define IFM_10_FL 13 /* 10BaseFL - Fiber */#define IFM_1000_SX 14 /* 1000baseSX Multi-mode Fiber */#define IFM_1000_LX 15 /* 1000baseLX Single-mode Fiber */#define IFM_1000_CX 16 /* 1000baseCX 150ohm STP */#define IFM_1000_TX 17 /* 1000baseTX 4 pair cat 5 */#define IFM_HPNA_1 18 /* HomePNA 1.0 (1Mb/s) *//* * Token ring */#define IFM_TOKEN 0x00000040#define IFM_TOK_STP4 3 /* Shielded twisted pair 4m - DB9 */#define IFM_TOK_STP16 4 /* Shielded twisted pair 16m - DB9 */#define IFM_TOK_UTP4 5 /* Unshielded twisted pair 4m - RJ45 */#define IFM_TOK_UTP16 6 /* Unshielded twisted pair 16m - RJ45 */#define IFM_TOK_ETR 0x00000200 /* Early token release */#define IFM_TOK_SRCRT 0x00000400 /* Enable source routing features */#define IFM_TOK_ALLR 0x00000800 /* All routes / Single route bcast *//* * FDDI */#define IFM_FDDI 0x00000060#define IFM_FDDI_SMF 3 /* Single-mode fiber */#define IFM_FDDI_MMF 4 /* Multi-mode fiber */#define IFM_FDDI_UTP 5 /* CDDI / UTP */#define IFM_FDDI_DA 0x00000100 /* Dual attach / single attach *//* * IEEE 802.11 Wireless */#define IFM_IEEE80211 0x00000080#define IFM_IEEE80211_FH1 3 /* Frequency Hopping 1Mbps */#define IFM_IEEE80211_FH2 4 /* Frequency Hopping 2Mbps */#define IFM_IEEE80211_DS2 5 /* Direct Sequence 2Mbps */#define IFM_IEEE80211_DS5 6 /* Direct Sequence 5Mbps*/#define IFM_IEEE80211_DS11 7 /* Direct Sequence 11Mbps*/#define IFM_IEEE80211_DS1 8 /* Direct Sequence 1Mbps*/#define IFM_IEEE80211_ADHOC 0x100 /* Operate in Adhoc mode *//*
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -