| /freebsd/contrib/wpa/hostapd/ |
| H A D | main.c | 174 hostapd_bss_setup_multi_link(hapd, iface->interfaces); in hostapd_driver_init() 189 * All interfaces participating in the AP MLD would have in hostapd_driver_init() 224 wpa_drivers[i]->global_init(iface->interfaces); in hostapd_driver_init() 406 * interfaces. No actual driver operations are started. 409 hostapd_interface_init(struct hapd_interfaces *interfaces, const char *if_name, in hostapd_interface_init() argument 416 iface = hostapd_init(interfaces, config_fname); in hostapd_interface_init() 425 iface->interfaces = interfaces; in hostapd_interface_init() 472 struct hapd_interfaces *interfaces = signal_ctx; in handle_reload() local 475 hostapd_for_each_interface(interfaces, handle_reload_iface, NULL); in handle_reload() 486 static int hostapd_global_init(struct hapd_interfaces *interfaces, in hostapd_global_init() argument [all …]
|
| /freebsd/contrib/openbsm/libbsm/ |
| H A D | libbsm.3 | 43 .Sh INTERFACES 47 provides a large number of Audit programming interfaces in several classes: 48 event stream interfaces, class interfaces, control interfaces, event 49 interfaces, I/O interfaces, mask interfaces, notification interfaces, token 50 interfaces, and user interfaces. 62 .Ss Audit Event Stream Interfaces 63 Audit event stream interfaces support interaction with file-backed audit 71 .Ss Audit Class Interfaces 72 Audit class interfaces support the look up of information from the 81 .Ss Audit Control Interfaces [all …]
|
| /freebsd/usr.sbin/bsnmpd/modules/snmp_wlan/ |
| H A D | snmp_wlan.3 | 41 management of virtual wireless interfaces. 44 for configuring virtual wireless interfaces. 52 The table is used for creation and deletion of virtual wireless interfaces. 82 The table contains information about the associated stations for interfaces 84 for interfaces operating in adhoc mode. 86 Information about the active channels for the wireless interfaces in the system. 88 The parameters that govern the roaming operation on the wireless interfaces. 90 The parameters that govern the transmit operation on the wireless interfaces. 99 WEP configuration for the wireless interfaces on the system. 101 Access Control configuration for wireless interfaces operating as access points. [all …]
|
| /freebsd/share/man/man4/ |
| H A D | bridge.4 | 92 interfaces on the local machine. 120 interfaces that are part of the bridge. 122 with which interfaces and will forward the traffic selectively. 133 All the bridged member interfaces need to be up 145 interfaces is also changed to match. 147 The TOE, TSO, TXCSUM and TXCSUM6 capabilities on all interfaces added to the 148 bridge are disabled if any of the interfaces do not support/enable them. 158 This can be used to multiplex the input of two or more interfaces into a single 162 that transmit the RX/TX signals out through two separate interfaces. 167 interface itself, not to the bridge's member interfaces. [all …]
|
| H A D | vlan.4 | 46 network interfaces, which allows routing/bridging between 68 interfaces provided they have different tags. 97 driver supports efficient operation over parent interfaces that can provide 99 Such interfaces are automatically recognized by their capabilities. 140 Other Ethernet interfaces can run VLANs using software emulation in the 149 interfaces. 156 These interfaces natively support long frames for 184 Some other interfaces not listed above may handle long frames,
|
| H A D | ifmib.4 | 33 .Nd Management Information Base for network interfaces 46 interface to provide management information about network interfaces 59 interfaces, and the other contains information specific to the 98 The generic interface information, common to all interfaces, 159 interfaces, the structure is called 184 Many Ethernet-like interfaces do not yet support the Ethernet MIB. 185 Regardless, all interfaces automatically support the generic MIB.
|
| H A D | mwl.4 | 57 PCI and/or CardBus interfaces are supported. 90 virtual interfaces may be configured for simultaneous use. 91 When multiple interfaces are configured each may have a separate 96 virtual interfaces may be configured together with 98 interfaces. 101 interfaces may be operated together with 103 interfaces to construct a wireless repeater device.
|
| H A D | netintro.4 | 49 .Em network interfaces . 89 Network interfaces comprise the lowest layer of the 112 Raw socket interfaces are provided to the 171 .Sh INTERFACES 175 certain interfaces such as the loopback interface, 181 calls may be used to manipulate network interfaces. 297 some interfaces may be reset so that incoming packets are no longer received. 369 Get list of clonable interfaces. 381 will be set to the number of clonable interfaces and the buffer pointed 384 will be filled with the names of clonable interfaces aligned on
|
| /freebsd/contrib/opencsd/decoder/include/ |
| H A D | opencsd.h | 43 /* C++ abstract interfaces */ 44 #include "interfaces/trc_data_raw_in_i.h" 45 #include "interfaces/trc_data_rawframe_in_i.h" 46 #include "interfaces/trc_error_log_i.h" 47 #include "interfaces/trc_gen_elem_in_i.h" 48 #include "interfaces/trc_instr_decode_i.h" 49 #include "interfaces/trc_pkt_in_i.h" 50 #include "interfaces/trc_pkt_raw_in_i.h" 51 #include "interfaces/trc_tgt_mem_access_i.h"
|
| /freebsd/contrib/llvm-project/clang/include/clang/CIR/Dialect/IR/ |
| H A D | CIRDialect.h | 21 #include "mlir/Interfaces/CallInterfaces.h" 22 #include "mlir/Interfaces/ControlFlowInterfaces.h" 23 #include "mlir/Interfaces/FunctionInterfaces.h" 24 #include "mlir/Interfaces/InferTypeOpInterface.h" 25 #include "mlir/Interfaces/LoopLikeInterface.h" 26 #include "mlir/Interfaces/MemorySlotInterfaces.h" 27 #include "mlir/Interfaces/SideEffectInterfaces.h" 33 #include "clang/CIR/Interfaces/CIRLoopOpInterface.h" 34 #include "clang/CIR/Interfaces/CIROpInterfaces.h"
|
| /freebsd/contrib/wpa/src/ap/ |
| H A D | hostapd.c | 69 static void hostapd_cleanup_unused_mlds(struct hapd_interfaces *interfaces); 74 int hostapd_for_each_interface(struct hapd_interfaces *interfaces, in hostapd_for_each_interface() argument 81 for (i = 0; i < interfaces->count; i++) { in hostapd_for_each_interface() 82 if (!interfaces->iface[i]) in hostapd_for_each_interface() 84 ret = cb(interfaces->iface[i], ctx); in hostapd_for_each_interface() 262 struct hapd_interfaces *interfaces; in hostapd_remove_hapd_iface() local 269 interfaces = hapd_iface->interfaces; in hostapd_remove_hapd_iface() 270 for (i = 0; i < interfaces->count; i++) { in hostapd_remove_hapd_iface() 271 if (interfaces->iface[i] == hapd_iface) in hostapd_remove_hapd_iface() 275 if (i >= interfaces->count) in hostapd_remove_hapd_iface() [all …]
|
| /freebsd/contrib/wpa/wpa_supplicant/dbus/ |
| H A D | dbus_new_introspect.c | 20 struct interfaces { struct 27 static struct interfaces * add_interface(struct dl_list *list, in add_interface() argument 30 struct interfaces *iface; in add_interface() 32 dl_list_for_each(iface, list, struct interfaces, list) { in add_interface() 37 iface = os_zalloc(sizeof(struct interfaces)); in add_interface() 100 struct interfaces *iface; in extract_interfaces_methods() 115 struct interfaces *iface; in extract_interfaces_signals() 130 struct interfaces *iface; in extract_interfaces_properties() 141 * extract_interfaces - Extract interfaces from methods, signals and props 143 * @obj_dsc: Description of object from which interfaces will be extracted [all …]
|
| /freebsd/usr.sbin/rtadvctl/ |
| H A D | rtadvctl.8 | 57 inactive interfaces and some statistics. 63 .It reload Op interfaces... 66 .Ar interfaces 67 are specified, configuration entries for the interfaces will be reloaded 69 .It enable interfaces... 72 This subcommand is useful for dynamically-added interfaces. 78 .It disable interfaces... 89 .It show Op interfaces...
|
| /freebsd/contrib/bsnmp/snmp_mibII/ |
| H A D | snmp_mibII.3 | 124 by other modules, that need to handle network interfaces. 134 .Ss NETWORK INTERFACES 137 module handles a list of all currently existing network interfaces. 177 destroys this interfaces and again creates a 179 then these interfaces must have different interface indexes, because in fact 180 they are different interfaces. 188 interfaces. 193 For real interfaces, the module keeps the mapping between the interface name 197 For dynamic interfaces 348 Both functions need the pointers to the interfaces. [all …]
|
| H A D | mibII.h | 31 * Implementation of the interfaces and IP groups of MIB-II. 106 * we must use the same index for this interface. For dynamic interfaces 108 * To differentiate between these types of interfaces we use the following table 111 * all interfaces. The mibif pointer is NULL, if the interface doesn't exist 130 * Interface stacking. The generic code cannot know how the interfaces stack. 170 /* list of all interfaces */ 188 /* number of interfaces */ 215 /* interfaces' data poll interval */ 223 /* get interfaces and interface addresses. */
|
| /freebsd/tests/sys/netinet/ |
| H A D | fibs_test.sh | 38 # Create two connected epair(4) interfaces 52 # Configure the TAP interfaces to use a RFC5737 nonrouteable addresses 71 # Configure epair interfaces 211 …atf_set "descr" "Multiple interfaces on the same subnet but with different fibs can both have defa… 217 # Configure the TAP interfaces to use a RFC5737 nonrouteable addresses 231 # Configure TAP interfaces 242 # respective interfaces. 257 …atf_set "descr" "Multiple interfaces on the same subnet but with different fibs can both have defa… 263 # Configure the TAP interfaces to use nonrouteable RFC3849 277 # Configure TAP interfaces [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/media/i2c/ |
| H A D | sony,imx214.txt | 22 - flash-leds: See ../video-interfaces.txt 23 - lens-focus: See ../video-interfaces.txt 27 Documentation/devicetree/bindings/media/video-interfaces.txt. 30 - data-lanes: check ../video-interfaces.txt 31 - link-frequencies: check ../video-interfaces.txt 32 - remote-endpoint: check ../video-interfaces.txt
|
| H A D | imx290.txt | 5 interfaces. The sensor output is available via CMOS logic parallel SDR output, 24 Documentation/devicetree/bindings/media/video-interfaces.txt. 27 - data-lanes: check ../video-interfaces.txt 28 - link-frequencies: check ../video-interfaces.txt 29 - remote-endpoint: check ../video-interfaces.txt
|
| H A D | nokia,smia.txt | 8 Documentation/devicetree/bindings/media/video-interfaces.txt . 12 Documentation/devicetree/bindings/media/video-interfaces.txt . 31 - flash-leds: See ../video-interfaces.txt 32 - lens-focus: See ../video-interfaces.txt 35 ../video-interfaces.txt .
|
| /freebsd/libexec/rc/rc.d/ |
| H A D | netif | 57 # Set the list of interfaces to work on. 73 # Create cloned interfaces 76 # Rename interfaces. 114 # Set the list of interfaces to work on. 121 # Destroy wlan interfaces 126 # Destroy cloned interfaces 153 # Common configuration subroutine for network interfaces. This 169 # Set the scope of the command (all interfaces or just one). 264 debug "The following interfaces were not configured: $_fail"
|
| /freebsd/share/man/man9/ |
| H A D | ifnet.9 | 38 .Nd kernel interfaces for manipulating network interfaces 321 The kernel mechanisms for handling network interfaces reside primarily 332 Those interfaces which are intended to be used by user programs 344 defines the kernel-internal interfaces, including the 356 The system keeps a linked list of interfaces using the 386 (Some trivial interfaces do not provide any link layer addresses; 390 Finally, those interfaces supporting reception of multicast datagrams 398 Interfaces are also associated with an output queue, defined as a 747 interfaces registered at the interface list. 800 Some interfaces do not have sufficient buffer storage to store frames [all …]
|
| /freebsd/sys/net80211/ |
| H A D | README.md | 12 virtual interfaces, packet encapsulation and de-encapsulation and basic 17 wpa_supplicant) interfaces with the net80211 stack. 37 used to represent instances of virtual interfaces. 59 * Operating system specific interfaces (ieee80211_freebsd.c) which implement 61 network interfaces, etc.) 106 * Virtual interfaces 133 * Virtual Interfaces
|
| /freebsd/sys/contrib/device-tree/Bindings/phy/ |
| H A D | microchip,lan966x-serdes.yaml | 13 Lan966x has 7 interfaces, consisting of 2 copper transceivers(CU), 14 3 SERDES6G and 2 RGMII interfaces. Two of the SERDES6G support QSGMII. 16 interfaces. The Serdes controller will allow to configure these interfaces 17 and allows to "mux" the interfaces to different ports.
|
| /freebsd/contrib/opencsd/decoder/include/common/ |
| H A D | ocsd_dcd_mngr_i.h | 42 #include "interfaces/trc_error_log_i.h" 43 #include "interfaces/trc_data_raw_in_i.h" 44 #include "interfaces/trc_instr_decode_i.h" 45 #include "interfaces/trc_tgt_mem_access_i.h" 46 #include "interfaces/trc_gen_elem_in_i.h" 47 #include "interfaces/trc_abs_typed_base_i.h"
|
| /freebsd/contrib/ntp/libntp/lib/isc/include/isc/ |
| H A D | interfaceiter.h | 28 * \brief Iterates over the list of network interfaces. 30 * Interfaces whose address family is not supported are ignored and never 31 * returned by the iterator. Interfaces whose netmask, interface flags, 83 * of network interfaces. 98 *\li #ISC_R_NOMORE There are no interfaces. 127 *\li #ISC_R_NOMORE There are no more interfaces.
|