| /freebsd/etc/mail/ |
| H A D | Makefile | 218 start start-mta start-mspq: 225 stop stop-mta stop-mspq: 232 restart restart-mta restart-mspq:
|
| /freebsd/crypto/openssl/ |
| H A D | SUPPORT.md | 88 [openssl-users]: https://mta.openssl.org/mailman/listinfo/openssl-users 89 [openssl-announce]: https://mta.openssl.org/mailman/listinfo/openssl-announce 90 [openssl-project]: https://mta.openssl.org/mailman/listinfo/openssl-project 91 [openssl-dev]: https://mta.openssl.org/mailman/listinfo/openssl-dev
|
| /freebsd/contrib/sendmail/src/ |
| H A D | Makefile.m4 | 65 ifdef(`confMTA_INSTALL', `bldPUSH_INSTALL_TARGET(`install-sm-mta')') 82 ${LN} ${LNOPTS} ${M`'BINDIR}/sm-mta $$i; \
|
| H A D | SECURITY | 82 .cf file: client or mta). 86 /PATH/TO/sendmail -L sm-mta -bd -q1h 124 /PATH/TO/sendmail -L sm-mta -bd -q1h 185 sh ./Build install-sm-mta 188 sm-mta.
|
| /freebsd/sys/dev/qlxge/ |
| H A D | qls_hw.c | 57 static int qls_hw_add_mcast(qla_host_t *ha, uint8_t *mta); 58 static int qls_hw_del_mcast(qla_host_t *ha, uint8_t *mta); 1222 qls_hw_add_mcast(qla_host_t *ha, uint8_t *mta) in qls_hw_add_mcast() argument 1227 if (QL_MAC_CMP(ha->mcast[i].addr, mta) == 0) in qls_hw_add_mcast() 1238 if (qls_config_mcast_mac_addr(ha, mta, 1, i)) in qls_hw_add_mcast() 1241 bcopy(mta, ha->mcast[i].addr, Q8_MAC_ADDR_LEN); in qls_hw_add_mcast() 1251 qls_hw_del_mcast(qla_host_t *ha, uint8_t *mta) in qls_hw_del_mcast() argument 1256 if (QL_MAC_CMP(ha->mcast[i].addr, mta) == 0) { in qls_hw_del_mcast() 1257 if (qls_config_mcast_mac_addr(ha, mta, 0, i)) in qls_hw_del_mcast() 1281 qls_hw_set_multi(qla_host_t *ha, uint8_t *mta, uint32_t mcnt, in qls_hw_set_multi() argument [all …]
|
| H A D | qls_glbl.h | 76 extern void qls_hw_set_multi(qla_host_t *ha, uint8_t *mta, uint32_t mcnt,
|
| H A D | qls_os.c | 821 uint8_t *mta = arg; in qls_copy_maddr() local 826 bcopy(LLADDR(sdl), &mta[mcnt * Q8_MAC_ADDR_LEN], Q8_MAC_ADDR_LEN); in qls_copy_maddr() 834 uint8_t mta[Q8_MAX_NUM_MULTICAST_ADDRS * Q8_MAC_ADDR_LEN]; in qls_set_multi() local 838 mcnt = if_foreach_llmaddr(ifp, qls_copy_maddr, mta); in qls_set_multi() 841 qls_hw_set_multi(ha, mta, mcnt, add_multi); in qls_set_multi()
|
| /freebsd/sys/dev/qlxgbe/ |
| H A D | ql_hw.c | 3589 qla_hw_mac_addr_present(qla_host_t *ha, uint8_t *mta) in qla_hw_mac_addr_present() argument 3594 if (QL_MAC_CMP(ha->hw.mcast[i].addr, mta) == 0) in qla_hw_mac_addr_present() 3601 qla_hw_add_mcast(qla_host_t *ha, uint8_t *mta, uint32_t nmcast) in qla_hw_add_mcast() argument 3612 bcopy(mta, ha->hw.mcast[i].addr, Q8_MAC_ADDR_LEN); in qla_hw_add_mcast() 3615 mta = mta + ETHER_ADDR_LEN; in qla_hw_add_mcast() 3626 qla_hw_del_mcast(qla_host_t *ha, uint8_t *mta, uint32_t nmcast) in qla_hw_del_mcast() argument 3631 if (QL_MAC_CMP(ha->hw.mcast[i].addr, mta) == 0) { in qla_hw_del_mcast() 3641 mta = mta + ETHER_ADDR_LEN; in qla_hw_del_mcast() 3660 uint8_t *mta = mcast_addr; in ql_hw_set_multi() local 3670 if (mta[0] || mta[1] || mta[2] || mta[3] || mta[4] || mta[5]) { in ql_hw_set_multi() [all …]
|
| H A D | ql_glbl.h | 63 extern int ql_hw_set_multi(qla_host_t *ha, uint8_t *mta, uint32_t mcnt,
|
| H A D | ql_os.c | 964 uint8_t *mta = arg; in qla_copy_maddr() local 969 bcopy(LLADDR(sdl), &mta[mcnt * Q8_MAC_ADDR_LEN], Q8_MAC_ADDR_LEN); in qla_copy_maddr() 977 uint8_t mta[Q8_MAX_NUM_MULTICAST_ADDRS * Q8_MAC_ADDR_LEN]; in qla_set_multi() local 982 mcnt = if_foreach_llmaddr(ifp, qla_copy_maddr, mta); in qla_set_multi() 1003 ret = ql_hw_set_multi(ha, mta, mcnt, 1); in qla_set_multi()
|
| /freebsd/sys/dev/igc/ |
| H A D | if_igc.c | 615 sc->mta = malloc(sizeof(u8) * ETHER_ADDR_LEN * in igc_if_attach_pre() 617 if (sc->mta == NULL) { in igc_if_attach_pre() 697 free(sc->mta, M_DEVBUF); in igc_if_attach_pre() 734 free(sc->mta, M_DEVBUF); in igc_if_attach_post() 1314 u8 *mta = arg; in igc_copy_maddr() local 1319 bcopy(LLADDR(sdl), &mta[idx * ETHER_ADDR_LEN], ETHER_ADDR_LEN); in igc_copy_maddr() 1336 u8 *mta; /* Multicast array memory */ in igc_if_multi_set() local 1342 mta = sc->mta; in igc_if_multi_set() 1343 bzero(mta, sizeof(u8) * ETHER_ADDR_LEN * MAX_NUM_MULTICAST_ADDRESSES); in igc_if_multi_set() 1345 mcnt = if_foreach_llmaddr(ifp, igc_copy_maddr, mta); in igc_if_multi_set() [all …]
|
| H A D | if_igc.h | 344 u8 *mta; member
|
| /freebsd/sys/dev/enic/ |
| H A D | if_enic.c | 356 softc->mta = malloc(sizeof(u8) * ETHER_ADDR_LEN * in enic_attach_pre() 359 if (softc->mta == NULL) in enic_attach_pre() 531 free(softc->mta, M_DEVBUF); in enic_attach_pre() 1008 vnic_dev_del_addr(enic->vdev, &softc->mta[i * ETHER_ADDR_LEN]); in enic_del_mcast() 1021 vnic_dev_add_addr(enic->vdev, &softc->mta[i * ETHER_ADDR_LEN]); in enic_add_mcast() 1029 uint8_t *mta = arg; in enic_copy_maddr() local 1034 bcopy(LLADDR(sdl), &mta[idx * ETHER_ADDR_LEN], ETHER_ADDR_LEN); in enic_copy_maddr() 1050 count = if_foreach_llmaddr(ifp, enic_copy_maddr, softc->mta); in enic_multi_set()
|
| H A D | enic.h | 333 uint8_t *mta; member
|
| /freebsd/sys/dev/qlxgb/ |
| H A D | qla_glbl.h | 70 extern void qla_hw_set_multi(qla_host_t *ha, uint8_t *mta, uint32_t mcnt,
|
| H A D | qla_os.c | 752 uint8_t *mta = arg; in qla_copy_maddr() local 756 bcopy(LLADDR(sdl), &mta[mcnt * Q8_MAC_ADDR_LEN], Q8_MAC_ADDR_LEN); in qla_copy_maddr() 764 uint8_t mta[Q8_MAX_NUM_MULTICAST_ADDRS * Q8_MAC_ADDR_LEN]; in qla_set_multi() local 768 mcnt = if_foreach_llmaddr(ifp, qla_copy_maddr, mta); in qla_set_multi() 769 qla_hw_set_multi(ha, mta, mcnt, add_multi); in qla_set_multi()
|
| H A D | qla_hw.c | 1662 qla_hw_set_multi(qla_host_t *ha, uint8_t *mta, uint32_t mcnt, in qla_hw_set_multi() argument 1670 qla_config_mac_addr(ha, mta, rsp->rx_rsp.cntxt_id, add_multi); in qla_hw_set_multi() 1671 mta += Q8_MAC_ADDR_LEN; in qla_hw_set_multi()
|
| /freebsd/sys/dev/ixgbe/ |
| H A D | if_ix.c | 1215 sc->mta = malloc(sizeof(*sc->mta) * MAX_NUM_MULTICAST_ADDRESSES, in ixgbe_if_attach_post() 1217 if (sc->mta == NULL) { in ixgbe_if_attach_post() 3583 free(sc->mta, M_IXGBE); in ixgbe_if_detach() 4160 struct ixgbe_mc_addr *mta = sc->mta; in ixgbe_mc_filter_apply() local 4164 bcopy(LLADDR(sdl), mta[idx].addr, IXGBE_ETH_LENGTH_OF_ADDRESS); in ixgbe_mc_filter_apply() 4165 mta[idx].vmdq = sc->pool; in ixgbe_mc_filter_apply() 4174 struct ixgbe_mc_addr *mta; in ixgbe_if_multi_set() local 4182 mta = sc->mta; in ixgbe_if_multi_set() 4183 bzero(mta, sizeof(*mta) * MAX_NUM_MULTICAST_ADDRESSES); in ixgbe_if_multi_set() 4189 update_ptr = (u8 *)mta; in ixgbe_if_multi_set() [all …]
|
| H A D | ixgbe.h | 437 struct ixgbe_mc_addr *mta; member
|
| H A D | if_ixv.c | 860 u8 mta[MAX_NUM_MULTICAST_ADDRESSES * IXGBE_ETH_LENGTH_OF_ADDRESS]; in ixv_if_multi_set() local 868 mcnt = if_foreach_llmaddr(ifp, ixv_if_multi_set_cb, mta); in ixv_if_multi_set() 870 update_ptr = mta; in ixv_if_multi_set()
|
| /freebsd/sys/dev/e1000/ |
| H A D | if_em.h | 522 u8 *mta; member
|
| H A D | if_em.c | 1270 sc->mta = malloc(sizeof(u8) * ETHER_ADDR_LEN * in em_if_attach_pre() 1272 if (sc->mta == NULL) { in em_if_attach_pre() 1360 free(sc->mta, M_DEVBUF); in em_if_attach_pre() 1429 free(sc->mta, M_DEVBUF); in em_if_detach() 1430 sc->mta = NULL; in em_if_detach() 2129 u8 *mta = arg; in em_copy_maddr() local 2134 bcopy(LLADDR(sdl), &mta[idx * ETHER_ADDR_LEN], ETHER_ADDR_LEN); in em_copy_maddr() 2150 u8 *mta; /* Multicast array memory */ in em_if_multi_set() local 2156 mta = sc->mta; in em_if_multi_set() 2157 bzero(mta, sizeof(u8) * ETHER_ADDR_LEN * MAX_NUM_MULTICAST_ADDRESSES); in em_if_multi_set() [all …]
|
| /freebsd/usr.bin/vi/catalog/ |
| H A D | swedish.UTF-8.base | 6 007 "kan inte hämta sista raden" 7 008 "Fel: kan inte hämta rad %lu"
|
| /freebsd/crypto/openssl/doc/designs/quic-design/ |
| H A D | quic-requirements.md | 14 [posted](https://mta.openssl.org/pipermail/openssl-project/2021-October/002764.html)
|
| /freebsd/sys/dev/bnxt/bnxt_en/ |
| H A D | if_bnxt.c | 3228 uint8_t *mta = arg; in bnxt_copy_maddr() local 3233 bcopy(LLADDR(sdl), &mta[cnt * ETHER_ADDR_LEN], ETHER_ADDR_LEN); in bnxt_copy_maddr() 3243 uint8_t *mta; in bnxt_multi_set() local 3246 mta = softc->vnic_info.mc_list.idi_vaddr; in bnxt_multi_set() 3247 bzero(mta, softc->vnic_info.mc_list.idi_size); in bnxt_multi_set() 3248 mcnt = if_foreach_llmaddr(ifp, bnxt_copy_maddr, mta); in bnxt_multi_set()
|