OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:brname
(Results
1 - 5
of
5
) sorted by relevancy
/src/external/bsd/wpa/dist/src/drivers/
linux_ioctl.h
16
int linux_br_add(int sock, const char *
brname
);
17
int linux_br_del(int sock, const char *
brname
);
18
int linux_br_add_if(int sock, const char *
brname
, const char *ifname);
19
int linux_br_del_if(int sock, const char *
brname
, const char *ifname);
20
int linux_br_get(char *
brname
, const char *ifname);
linux_ioctl.c
123
int linux_br_add(int sock, const char *
brname
)
125
if (ioctl(sock, SIOCBRADDBR,
brname
) < 0) {
129
brname
, strerror(errno));
138
int linux_br_del(int sock, const char *
brname
)
140
if (ioctl(sock, SIOCBRDELBR,
brname
) < 0) {
142
brname
, strerror(errno));
150
int linux_br_add_if(int sock, const char *
brname
, const char *ifname)
160
os_strlcpy(ifr.ifr_name,
brname
, IFNAMSIZ);
167
"%s: %s", ifname,
brname
, strerror(errno));
176
os_strcmp(in_br,
brname
) != 0
[
all
...]
driver_nl80211.h
76
char
brname
[IFNAMSIZ];
member in struct:i802_bss
driver_nl80211.c
1449
os_strlcpy(bss->
brname
, namebuf, IFNAMSIZ);
3147
if (linux_br_del_if(drv->global->ioctl_sock, bss->
brname
,
3151
bss->ifname, bss->
brname
, strerror(errno));
3158
if (linux_set_iface_flags(drv->global->ioctl_sock, bss->
brname
,
3162
bss->
brname
);
3163
if (linux_br_del(drv->global->ioctl_sock, bss->
brname
) < 0)
3166
bss->
brname
, strerror(errno));
7418
bss->
brname
[0] &&
7422
bss->ifname, bss->
brname
);
7424
bss->
brname
, bss->ifname) < 0
[
all
...]
driver_atheros.c
1724
char
brname
[IFNAMSIZ];
local
1766
} else if (linux_br_get(
brname
, drv->iface) == 0) {
1768
"EAPOL receive",
brname
);
1769
drv->sock_recv = l2_packet_init(
brname
, NULL, ETH_P_EAPOL,
Completed in 22 milliseconds
Indexes created Wed Sep 16 00:24:39 UTC 2026