Searched refs:macs (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-13-stable/crypto/openssh/regress/
H A Dintegrity.sh10 macs=`${SSH} -Q mac`
13 macs="$macs `${SSH} -Q cipher-auth`"
23 for m in $macs; do
H A Dssh-com.sh91 macs="hmac-md5"
95 macs="$macs hmac-sha1 hmac-sha1-96 hmac-md5-96"
99 macs="$macs hmac-sha1 hmac-sha1-96 hmac-md5-96"
103 for m in $macs; do
/freebsd-13-stable/sys/netgraph/
H A Dng_macfilter.h100 u_int32_t n; /* Number of entries in macs */
101 struct ngm_macfilter_mac macs[]; /* Macs table */ member in struct:ngm_macfilter_macs
105 { "macs", &ng_macfilter_macs_array_type },\
H A Dng_macfilter.c116 (const struct ngm_macfilter_macs *)(buf - OFFSETOF(struct ngm_macfilter_macs, macs));
346 * Count the number of matching macs routed to this hook.
733 bcopy(mfp->mf_macs, &ngm_macs->macs[0], n * sizeof(struct ngm_macfilter_mac));
/freebsd-13-stable/sys/dev/iwm/
H A Dif_iwm_binding.c175 cmd.macs[i] = htole32(IWM_FW_CTXT_INVALID);
177 cmd.macs[i] = htole32(IWM_FW_CMD_ID_AND_COLOR(data->ids[i],
229 * while many macs are bound, which is forbidden - so fail the binding.
/freebsd-13-stable/crypto/openssh/
H A Dmac.c57 static const struct macalg macs[] = { variable in typeref:struct:macalg
93 for (m = macs; m->name != NULL; m++) {
132 for (m = macs; m->name != NULL; m++) {
H A Dreadconf.h68 char *macs; /* SSH2 macs in order of preference. */ member in struct:__anon6881
H A Dservconf.h104 char *macs; /* Supported SSH2 macs. */ member in struct:__anon6892
H A Dreadconf.c250 { "macs", oMacs },
1213 if (*activep && options->macs == NULL)
1214 options->macs = xstrdup(arg);
1889 options->macs = NULL;
2148 ASSEMBLE(macs, KEX_SERVER_MAC, all_mac);
2686 dump_cfg_string(oMacs, o->macs ? o->macs : KEX_CLIENT_MAC);
H A Dservconf.c148 options->macs = NULL;
212 ASSEMBLE(macs, KEX_SERVER_MAC, all_mac);
616 { "macs", sMacs, SSHCFG_GLOBAL },
1733 if (options->macs == NULL)
1734 options->macs = xstrdup(arg);
2621 dump_cfg_string(sMacs, o->macs ? o->macs : KEX_SERVER_MAC);
H A Dssh.c886 free(options.macs);
887 options.macs = xstrdup(optarg);
H A Dsshd.c2348 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
/freebsd-13-stable/sys/dev/qlnx/qlnxe/
H A Decore_sriov.h127 u8 macs[ECORE_ETH_VF_NUM_MAC_FILTERS][ETH_ALEN]; member in struct:ecore_vf_shadow_config
H A Decore_sriov.c3374 if (!OSAL_MEMCMP(p_vf->shadow_config.macs[i],
3376 OSAL_MEM_ZERO(p_vf->shadow_config.macs[i],
3390 OSAL_MEM_ZERO(p_vf->shadow_config.macs[i], ETH_ALEN);
3399 if (!OSAL_MEMCMP(p_vf->shadow_config.macs[i],
3401 OSAL_MEMCPY(p_vf->shadow_config.macs[i],
/freebsd-13-stable/tools/tools/net80211/w00t/ap/
H A Dap.c213 unsigned char macs[6*3]; local
228 mac2str(macs, wh->i_addr2);
229 printf("Probe request for [%s] from %s\n", ptr, macs);
325 unsigned char macs[6*3]; local
345 mac2str(macs, wh->i_addr2);
346 printf("Assoc request for [%s] from %s\n", ptr, macs);
/freebsd-13-stable/sys/dev/ath/ath_hal/ar5212/
H A Dar5212_attach.c292 } macs[] = { local
308 for (i = 0; i < N(macs); i++)
309 if (macs[i].version == macVersion &&
310 macs[i].revMin <= macRev && macRev <= macs[i].revMax)
/freebsd-13-stable/sys/dev/virtio/network/
H A Dif_vtnetvar.h283 uint8_t macs[VTNET_MAX_MAC_ENTRIES][ETHER_ADDR_LEN]; member in struct:vtnet_mac_table
H A Dvirtio_net.h191 uint8_t macs[][ETHER_ADDR_LEN]; member in struct:virtio_net_ctrl_mac
/freebsd-13-stable/sys/dev/mwl/
H A Dmwlhal.h408 int mwl_hal_setmcast(struct mwl_hal *mh, int nmc, const uint8_t macs[]);
H A Dmwlhal.c1157 mwl_hal_setmcast(struct mwl_hal *mh0, int nmc, const uint8_t macs[]) argument
1169 memcpy(pCmd->MACList, macs, nmc*IEEE80211_ADDR_LEN);
H A Dif_mwl.c1727 uint8_t macs[IEEE80211_ADDR_LEN*MWL_HAL_MCAST_MAX];/* XXX stack use */
1731 mp = macs;
1746 mwl_hal_setmcast(sc->sc_mh, nmc, macs);
/freebsd-13-stable/sys/dev/malo/
H A Dif_malohal.c890 malo_hal_setmcast(struct malo_hal *mh, int nmc, const uint8_t macs[]) argument
901 memcpy(cmd->maclist, macs, nmc * IEEE80211_ADDR_LEN);
H A Dif_malo.c1511 uint8_t macs[IEEE80211_ADDR_LEN * MALO_HAL_MCAST_MAX]; member in struct:malo_copy_maddr_ctx
1523 IEEE80211_ADDR_COPY(ctx->macs + (ctx->nmc * IEEE80211_ADDR_LEN),
1549 malo_hal_setmcast(sc->malo_mh, ctx.nmc, ctx.macs);
/freebsd-13-stable/sys/dev/bxe/
H A Decore_sp.c990 /* Set LLH CAM entry: currently only iSCSI and ETH macs are
3756 ECORE_LIST_FOR_EACH_ENTRY(elem, &o->registry.exact_match.macs, link,
3869 if (!ECORE_LIST_IS_EMPTY(&o->registry.exact_match.macs))
3887 &o->registry.exact_match.macs);
3890 elem = ECORE_LIST_FIRST_ENTRY(&o->registry.exact_match.macs,
3895 ECORE_LIST_INIT(&o->registry.exact_match.macs);
4011 /* This is needed to recover number of currently configured mcast macs
4137 ECORE_LIST_INIT(&mcast_obj->registry.exact_match.macs);
H A Decore_sp.h1022 ecore_list_t macs; member in struct:ecore_mcast_obj::__anon11711::__anon11713

Completed in 247 milliseconds

12