| /hostap-latest/src/drivers/ |
| D | driver_wired_common.c | 219 int driver_wired_init_common(struct driver_wired_common_data *common, in driver_wired_init_common() argument 224 os_strlcpy(common->ifname, ifname, sizeof(common->ifname)); in driver_wired_init_common() 225 common->ctx = ctx; in driver_wired_init_common() 228 common->pf_sock = socket(PF_PACKET, SOCK_DGRAM, 0); in driver_wired_init_common() 229 if (common->pf_sock < 0) in driver_wired_init_common() 232 common->pf_sock = -1; in driver_wired_init_common() 238 common->iff_up = 1; in driver_wired_init_common() 240 if (wired_multicast_membership(common->pf_sock, in driver_wired_init_common() 241 if_nametoindex(common->ifname), in driver_wired_init_common() 246 common->membership = 1; in driver_wired_init_common() [all …]
|
| D | driver_wired.c | 48 struct driver_wired_common_data common; member 176 drv->common.sock = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_PAE)); in wired_init_sockets() 177 if (drv->common.sock < 0) { in wired_init_sockets() 183 if (eloop_register_read_sock(drv->common.sock, handle_read, in wired_init_sockets() 184 drv->common.ctx, NULL)) { in wired_init_sockets() 190 os_strlcpy(ifr.ifr_name, drv->common.ifname, sizeof(ifr.ifr_name)); in wired_init_sockets() 191 if (ioctl(drv->common.sock, SIOCGIFINDEX, &ifr) != 0) { in wired_init_sockets() 203 if (bind(drv->common.sock, (struct sockaddr *) &addr, sizeof(addr)) < 0) in wired_init_sockets() 210 if (wired_multicast_membership(drv->common.sock, ifr.ifr_ifindex, in wired_init_sockets() 218 os_strlcpy(ifr.ifr_name, drv->common.ifname, sizeof(ifr.ifr_name)); in wired_init_sockets() [all …]
|
| D | driver_macsec_qca.c | 67 struct driver_wired_common_data common; member 197 drv->common.sock = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_PAE)); in macsec_qca_init_sockets() 198 if (drv->common.sock < 0) { in macsec_qca_init_sockets() 204 if (eloop_register_read_sock(drv->common.sock, macsec_qca_handle_read, in macsec_qca_init_sockets() 205 drv->common.ctx, NULL)) { in macsec_qca_init_sockets() 211 os_strlcpy(ifr.ifr_name, drv->common.ifname, sizeof(ifr.ifr_name)); in macsec_qca_init_sockets() 212 if (ioctl(drv->common.sock, SIOCGIFINDEX, &ifr) != 0) { in macsec_qca_init_sockets() 224 if (bind(drv->common.sock, (struct sockaddr *) &addr, in macsec_qca_init_sockets() 231 if (wired_multicast_membership(drv->common.sock, ifr.ifr_ifindex, in macsec_qca_init_sockets() 239 os_strlcpy(ifr.ifr_name, drv->common.ifname, sizeof(ifr.ifr_name)); in macsec_qca_init_sockets() [all …]
|
| D | driver_macsec_linux.c | 55 struct driver_wired_common_data common; member 272 driver_wired_deinit_common(&drv->common); in macsec_drv_wpa_deinit() 319 if (driver_wired_init_common(&drv->common, ifname, ctx) < 0) { in macsec_drv_wpa_init() 354 drv->parent_ifi = rtnl_link_name2i(drv->link_cache, drv->common.ifname); in macsec_drv_macsec_init() 358 drv->common.ifname); in macsec_drv_macsec_init() 362 drv->common.ifname, drv->parent_ifi); in macsec_drv_macsec_init() 1165 drv->common.ifname, SCI2STR(sc->sci.addr, sc->sci.port), in macsec_drv_create_transmit_sc() 1217 drv->common.ifname, drv->ifi, ifname); in macsec_drv_create_transmit_sc() 1463 drv->common.ifname, drv->ifi, in macsec_drv_status() 1539 drv->common.sock = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_PAE)); in macsec_drv_init_sockets() [all …]
|
| D | driver_wired_common.h | 30 int driver_wired_init_common(struct driver_wired_common_data *common, 32 void driver_wired_deinit_common(struct driver_wired_common_data *common);
|
| /hostap-latest/tests/fuzzing/dpp-uri/ |
| D | Makefile | 12 LIBS += $(SRC)/common/libcommon.a 23 OBJS += $(SRC)/common/dpp.o 24 OBJS += $(SRC)/common/dpp_auth.o 25 OBJS += $(SRC)/common/dpp_backup.o 26 OBJS += $(SRC)/common/dpp_crypto.o 27 OBJS += $(SRC)/common/dpp_pkex.o 28 OBJS += $(SRC)/common/dpp_reconfig.o 29 OBJS += $(SRC)/common/dpp_tcp.o 42 clean: common-clean
|
| /hostap-latest/tests/fuzzing/pasn-init/ |
| D | Makefile | 13 OBJS += $(SRC)/utils/common.o 17 OBJS += $(SRC)/common/sae.o 18 OBJS += $(SRC)/common/dragonfly.o 19 OBJS += $(SRC)/common/wpa_common.o 20 OBJS += $(SRC)/common/ieee802_11_common.o 40 clean: common-clean
|
| /hostap-latest/tests/fuzzing/pasn-resp/ |
| D | Makefile | 12 OBJS += $(SRC)/utils/common.o 17 OBJS += $(SRC)/common/sae.o 18 OBJS += $(SRC)/common/dragonfly.o 19 OBJS += $(SRC)/common/wpa_common.o 20 OBJS += $(SRC)/common/ieee802_11_common.o 39 clean: common-clean
|
| /hostap-latest/hs20/client/ |
| D | Makefile | 6 CFLAGS += -I../../src/common 34 OBJS += ../../src/common/wpa_ctrl.o ../../src/common/wpa_helpers.o 54 OBJS += ../../src/utils/common.o 80 clean: common-clean
|
| D | Android.mk | 5 INCLUDES += $(LOCAL_PATH)/../../src/common 16 INCLUDES += external/icu4c/common 24 INCLUDES += external/icu/icu4c/source/common
|
| /hostap-latest/tests/fuzzing/sae/ |
| D | Makefile | 7 LIBS += $(SRC)/common/libcommon.a 15 OBJS += $(SRC)/common/dragonfly.o 28 clean: common-clean
|
| /hostap-latest/wlantest/ |
| D | Makefile | 31 OBJS += ../src/common/ieee802_11_common.o 32 OBJS += ../src/common/wpa_common.o 68 OBJS_cli += ../src/common/cli.o 88 clean: common-clean
|
| /hostap-latest/tests/fuzzing/json/ |
| D | Makefile | 5 OBJS += $(SRC)/utils/common.o 22 clean: common-clean
|
| /hostap-latest/tests/fuzzing/p2p/ |
| D | Makefile | 5 LIBS += $(SRC)/common/libcommon.a 22 clean: common-clean
|
| /hostap-latest/tests/fuzzing/asn1/ |
| D | Makefile | 4 OBJS += $(SRC)/utils/common.o 21 clean: common-clean
|
| /hostap-latest/tests/fuzzing/x509/ |
| D | Makefile | 4 LIBS += $(SRC)/common/libcommon.a 26 clean: common-clean
|
| /hostap-latest/tests/fuzzing/eapol-supp/ |
| D | Makefile | 6 LIBS += $(SRC)/common/libcommon.a 27 clean: common-clean
|
| /hostap-latest/tests/fuzzing/tls-client/ |
| D | Makefile | 4 LIBS += $(SRC)/common/libcommon.a 31 clean: common-clean
|
| /hostap-latest/tests/fuzzing/tls-server/ |
| D | Makefile | 4 LIBS += $(SRC)/common/libcommon.a 31 clean: common-clean
|
| /hostap-latest/tests/fuzzing/eapol-key-supp/ |
| D | Makefile | 8 LIBS += $(SRC)/common/libcommon.a 29 clean: common-clean
|
| /hostap-latest/tests/fuzzing/eapol-key-auth/ |
| D | Makefile | 8 LIBS += $(SRC)/common/libcommon.a 33 clean: common-clean
|
| /hostap-latest/tests/fuzzing/ap-mgmt/ |
| D | Makefile | 12 LIBS += $(SRC)/common/libcommon.a 43 clean: common-clean
|
| /hostap-latest/tests/fuzzing/wnm/ |
| D | Makefile | 10 LIBS += $(SRC)/common/libcommon.a 59 clean: common-clean
|
| /hostap-latest/wpa_supplicant/ |
| D | nmake.mak | 76 $(OBJDIR)\common.obj \ 155 $(OBJDIR)\common.obj 159 $(OBJDIR)\common.obj \ 206 {..\src\common}.c{$(OBJDIR)}.obj::
|
| /hostap-latest/src/ |
| D | build.rules | 107 .PHONY: common-clean 108 common-clean:
|