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

/freebsd-10-stable/crypto/openssh/regress/
H A Dintegrity.sh12 macs=`${SSH} -Q mac`
15 macs="$macs `${SSH} -Q cipher-auth`"
25 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-10-stable/sys/dev/virtio/network/
H A Dvirtio_net.h151 uint8_t macs[][ETHER_ADDR_LEN]; member in struct:virtio_net_ctrl_mac
H A Dif_vtnetvar.h247 uint8_t macs[VTNET_MAX_MAC_ENTRIES][ETHER_ADDR_LEN]; member in struct:vtnet_mac_table
H A Dif_vtnet.c3338 &filter->vmf_unicast.macs[ucnt], ETHER_ADDR_LEN);
3362 &filter->vmf_multicast.macs[mcnt], ETHER_ADDR_LEN);
/freebsd-10-stable/crypto/openssh/
H A Dmac.c57 static const struct macalg macs[] = { variable in typeref:struct:macalg
96 for (m = macs; m->name != NULL; m++) {
135 for (m = macs; m->name != NULL; m++) {
H A Dreadconf.h75 char *macs; /* SSH2 macs in order of preference. */ member in struct:__anon510
H A Dservconf.h94 char *macs; /* Supported SSH2 macs. */ member in struct:__anon32
H A Dservconf.c141 options->macs = NULL;
187 kex_assemble_names(KEX_SERVER_MAC, &o->macs) != 0 ||
547 { "macs", sMacs, SSHCFG_GLOBAL },
1482 if (options->macs == NULL)
1483 options->macs = xstrdup(arg);
2353 dump_cfg_string(sMacs, o->macs ? o->macs : KEX_SERVER_MAC);
H A Dreadconf.c231 { "macs", oMacs },
1222 if (*activep && options->macs == NULL)
1223 options->macs = xstrdup(arg);
1838 options->macs = NULL;
2094 kex_assemble_names(KEX_CLIENT_MAC, &options->macs) != 0 ||
2605 dump_cfg_string(oMacs, o->macs ? o->macs : KEX_CLIENT_MAC);
H A Dssh.c847 free(options.macs);
848 options.macs = xstrdup(optarg);
H A Dsshd.c2684 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
H A Dsshconnect2.c179 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
/freebsd-10-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.c3375 if (!OSAL_MEMCMP(p_vf->shadow_config.macs[i],
3377 OSAL_MEM_ZERO(p_vf->shadow_config.macs[i],
3391 OSAL_MEM_ZERO(p_vf->shadow_config.macs[i], ETH_ALEN);
3400 if (!OSAL_MEMCMP(p_vf->shadow_config.macs[i],
3402 OSAL_MEMCPY(p_vf->shadow_config.macs[i],
/freebsd-10-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-10-stable/sys/dev/ath/ath_hal/ar5212/
H A Dar5212_attach.c290 } macs[] = { local
306 for (i = 0; i < N(macs); i++)
307 if (macs[i].version == macVersion &&
308 macs[i].revMin <= macRev && macRev <= macs[i].revMax)
/freebsd-10-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.c1164 mwl_hal_setmcast(struct mwl_hal *mh0, int nmc, const uint8_t macs[]) argument
1176 memcpy(pCmd->MACList, macs, nmc*IEEE80211_ADDR_LEN);
H A Dif_mwl.c1801 uint8_t macs[IEEE80211_ADDR_LEN*MWL_HAL_MCAST_MAX];/* XXX stack use */
1805 mp = macs;
1820 mwl_hal_setmcast(sc->sc_mh, nmc, macs);
/freebsd-10-stable/sys/dev/malo/
H A Dif_malohal.c897 malo_hal_setmcast(struct malo_hal *mh, int nmc, const uint8_t macs[]) argument
908 memcpy(cmd->maclist, macs, nmc * IEEE80211_ADDR_LEN);
H A Dif_malo.c1576 uint8_t macs[IEEE80211_ADDR_LEN * MALO_HAL_MCAST_MAX]; local
1580 mp = macs;
1604 malo_hal_setmcast(sc->malo_mh, nmc, macs);
/freebsd-10-stable/sys/dev/bxe/
H A Decore_sp.c988 /* Set LLH CAM entry: currently only iSCSI and ETH macs are
3754 ECORE_LIST_FOR_EACH_ENTRY(elem, &o->registry.exact_match.macs, link,
3867 if (!ECORE_LIST_IS_EMPTY(&o->registry.exact_match.macs))
3885 &o->registry.exact_match.macs);
3888 elem = ECORE_LIST_FIRST_ENTRY(&o->registry.exact_match.macs,
3893 ECORE_LIST_INIT(&o->registry.exact_match.macs);
4009 /* This is needed to recover number of currently configured mcast macs
4135 ECORE_LIST_INIT(&mcast_obj->registry.exact_match.macs);
H A Decore_sp.h1023 ecore_list_t macs; member in struct:ecore_mcast_obj::__anon37::__anon39

Completed in 338 milliseconds