| /freebsd-9-stable/etc/ |
| D | rc.sendmail | 245 start-mta) 249 stop-mta) 253 restart-mta)
|
| /freebsd-9-stable/etc/mail/ |
| D | Makefile | 221 start start-mta start-mspq: 228 stop stop-mta stop-mspq: 235 restart restart-mta restart-mspq:
|
| /freebsd-9-stable/contrib/sendmail/src/ |
| D | Makefile.m4 | 65 ifdef(`confMTA_INSTALL', `bldPUSH_INSTALL_TARGET(`install-sm-mta')') 82 ${LN} ${LNOPTS} ${M`'BINDIR}/sm-mta $$i; \
|
| D | SECURITY | 82 .cf file: client or mta). 86 /PATH/TO/sendmail -L sm-mta -bd -q1h 123 /PATH/TO/sendmail -L sm-mta -bd -q1h 184 sh ./Build install-sm-mta 187 sm-mta.
|
| /freebsd-9-stable/sys/dev/qlxge/ |
| D | qls_hw.c | 59 static int qls_hw_add_mcast(qla_host_t *ha, uint8_t *mta); 60 static int qls_hw_del_mcast(qla_host_t *ha, uint8_t *mta); 1237 qls_hw_add_mcast(qla_host_t *ha, uint8_t *mta) in qls_hw_add_mcast() argument 1243 if (QL_MAC_CMP(ha->mcast[i].addr, mta) == 0) in qls_hw_add_mcast() 1256 if (qls_config_mcast_mac_addr(ha, mta, 1, i)) in qls_hw_add_mcast() 1259 bcopy(mta, ha->mcast[i].addr, Q8_MAC_ADDR_LEN); in qls_hw_add_mcast() 1269 qls_hw_del_mcast(qla_host_t *ha, uint8_t *mta) in qls_hw_del_mcast() argument 1274 if (QL_MAC_CMP(ha->mcast[i].addr, mta) == 0) { in qls_hw_del_mcast() 1276 if (qls_config_mcast_mac_addr(ha, mta, 0, i)) in qls_hw_del_mcast() 1300 qls_hw_set_multi(qla_host_t *ha, uint8_t *mta, uint32_t mcnt, in qls_hw_set_multi() argument [all …]
|
| D | qls_glbl.h | 76 extern void qls_hw_set_multi(qla_host_t *ha, uint8_t *mta, uint32_t mcnt,
|
| D | qls_os.c | 844 uint8_t mta[Q8_MAX_NUM_MULTICAST_ADDRS * Q8_MAC_ADDR_LEN]; in qls_set_multi() local 860 &mta[mcnt * Q8_MAC_ADDR_LEN], Q8_MAC_ADDR_LEN); in qls_set_multi() 868 qls_hw_set_multi(ha, mta, mcnt, add_multi); in qls_set_multi()
|
| /freebsd-9-stable/sys/dev/qlxgbe/ |
| D | ql_hw.c | 3659 qla_hw_mac_addr_present(qla_host_t *ha, uint8_t *mta) in qla_hw_mac_addr_present() argument 3664 if (QL_MAC_CMP(ha->hw.mcast[i].addr, mta) == 0) in qla_hw_mac_addr_present() 3671 qla_hw_add_mcast(qla_host_t *ha, uint8_t *mta, uint32_t nmcast) in qla_hw_add_mcast() argument 3684 bcopy(mta, ha->hw.mcast[i].addr, Q8_MAC_ADDR_LEN); in qla_hw_add_mcast() 3687 mta = mta + ETHER_ADDR_LEN; in qla_hw_add_mcast() 3699 qla_hw_del_mcast(qla_host_t *ha, uint8_t *mta, uint32_t nmcast) in qla_hw_del_mcast() argument 3704 if (QL_MAC_CMP(ha->hw.mcast[i].addr, mta) == 0) { in qla_hw_del_mcast() 3715 mta = mta + ETHER_ADDR_LEN; in qla_hw_del_mcast() 3734 uint8_t *mta = mcast_addr; in ql_hw_set_multi() local 3744 if (mta[0] || mta[1] || mta[2] || mta[3] || mta[4] || mta[5]) { in ql_hw_set_multi() [all …]
|
| D | ql_glbl.h | 63 extern int ql_hw_set_multi(qla_host_t *ha, uint8_t *mta, uint32_t mcnt,
|
| D | ql_os.c | 986 uint8_t mta[Q8_MAX_NUM_MULTICAST_ADDRS * Q8_MAC_ADDR_LEN]; in qla_set_multi() local 1003 &mta[mcnt * Q8_MAC_ADDR_LEN], Q8_MAC_ADDR_LEN); in qla_set_multi() 1030 ret = ql_hw_set_multi(ha, mta, mcnt, 1); in qla_set_multi()
|
| /freebsd-9-stable/sys/dev/ixgb/ |
| D | if_ixgb.c | 328 adapter->mta = malloc(sizeof(u_int8_t) * IXGB_ETH_LENGTH_OF_ADDRESS * in ixgb_attach() 330 if (adapter->mta == NULL) { in ixgb_attach() 363 free(adapter->mta, M_DEVBUF); in ixgb_attach() 425 free(adapter->mta, M_DEVBUF); in ixgb_detach() 1083 u_int8_t *mta; local 1090 mta = adapter->mta; 1091 bzero(mta, sizeof(u_int8_t) * IXGB_ETH_LENGTH_OF_ADDRESS * 1104 &mta[mcnt * IXGB_ETH_LENGTH_OF_ADDRESS], IXGB_ETH_LENGTH_OF_ADDRESS); 1114 ixgb_mc_addr_list_update(&adapter->hw, mta, mcnt, 0);
|
| D | if_ixgb.h | 348 u_int8_t *mta; member
|
| /freebsd-9-stable/sys/dev/qlxgb/ |
| D | qla_glbl.h | 78 extern void qla_hw_set_multi(qla_host_t *ha, uint8_t *mta, uint32_t mcnt,
|
| D | qla_os.c | 757 uint8_t mta[Q8_MAX_NUM_MULTICAST_ADDRS * Q8_MAC_ADDR_LEN]; in qla_set_multi() local 773 &mta[mcnt * Q8_MAC_ADDR_LEN], Q8_MAC_ADDR_LEN); in qla_set_multi() 780 qla_hw_set_multi(ha, mta, mcnt, add_multi); in qla_set_multi()
|
| D | qla_hw.c | 1623 qla_hw_set_multi(qla_host_t *ha, uint8_t *mta, uint32_t mcnt, in qla_hw_set_multi() argument 1631 qla_config_mac_addr(ha, mta, rsp->rx_rsp.cntxt_id, add_multi); in qla_hw_set_multi() 1632 mta += Q8_MAC_ADDR_LEN; in qla_hw_set_multi()
|
| /freebsd-9-stable/sys/dev/e1000/ |
| D | if_lem.h | 345 u8 *mta; member
|
| D | if_lem.c | 543 adapter->mta = malloc(sizeof(u8) * ETH_ADDR_LEN * in lem_attach() 545 if (adapter->mta == NULL) { in lem_attach() 680 free(adapter->mta, M_DEVBUF); in lem_attach() 764 free(adapter->mta, M_DEVBUF); in lem_detach() 1921 u8 *mta; /* Multicast array memory */ in lem_set_multi() local 1926 mta = adapter->mta; in lem_set_multi() 1927 bzero(mta, sizeof(u8) * ETH_ADDR_LEN * MAX_NUM_MULTICAST_ADDRESSES); in lem_set_multi() 1952 &mta[mcnt * ETH_ADDR_LEN], ETH_ADDR_LEN); in lem_set_multi() 1965 e1000_update_mc_addr_list(&adapter->hw, mta, mcnt); in lem_set_multi()
|
| D | if_em.h | 411 u8 *mta; member
|
| D | if_igb.h | 459 u8 *mta; member
|
| D | if_igb.c | 596 adapter->mta = malloc(sizeof(u8) * ETH_ADDR_LEN * in igb_attach() 598 if (adapter->mta == NULL) { in igb_attach() 733 free(adapter->mta, M_DEVBUF); in igb_attach() 807 if (adapter->mta != NULL) in igb_detach() 808 free(adapter->mta, M_DEVBUF); in igb_detach() 2054 u8 *mta; in igb_set_multi() local 2060 mta = adapter->mta; in igb_set_multi() 2061 bzero(mta, sizeof(uint8_t) * ETH_ADDR_LEN * in igb_set_multi() 2077 &mta[mcnt * ETH_ADDR_LEN], ETH_ADDR_LEN); in igb_set_multi() 2091 e1000_update_mc_addr_list(&adapter->hw, mta, mcnt); in igb_set_multi()
|
| D | if_em.c | 646 adapter->mta = malloc(sizeof(u8) * ETH_ADDR_LEN * in em_attach() 648 if (adapter->mta == NULL) { in em_attach() 768 free(adapter->mta, M_DEVBUF); in em_attach() 838 free(adapter->mta, M_DEVBUF); in em_detach() 2201 u8 *mta; /* Multicast array memory */ in em_set_multi() local 2206 mta = adapter->mta; in em_set_multi() 2207 bzero(mta, sizeof(u8) * ETH_ADDR_LEN * MAX_NUM_MULTICAST_ADDRESSES); in em_set_multi() 2232 &mta[mcnt * ETH_ADDR_LEN], ETH_ADDR_LEN); in em_set_multi() 2245 e1000_update_mc_addr_list(&adapter->hw, mta, mcnt); in em_set_multi()
|
| /freebsd-9-stable/sys/dev/ixgbe/ |
| D | ixgbe.h | 460 u8 *mta; member
|
| D | ixgbe.c | 533 adapter->mta = malloc(sizeof(u8) * IXGBE_ETH_LENGTH_OF_ADDRESS * in ixgbe_attach() 535 if (adapter->mta == NULL) { in ixgbe_attach() 639 free(adapter->mta, M_DEVBUF); in ixgbe_attach() 717 free(adapter->mta, M_DEVBUF); in ixgbe_detach() 1960 u8 *mta; local 1968 mta = adapter->mta; 1969 bzero(mta, sizeof(u8) * IXGBE_ETH_LENGTH_OF_ADDRESS * 1983 &mta[mcnt * IXGBE_ETH_LENGTH_OF_ADDRESS], 2007 update_ptr = mta;
|
| D | ixv.c | 1363 u8 mta[MAX_NUM_MULTICAST_ADDRESSES * IXGBE_ETH_LENGTH_OF_ADDRESS]; in ixv_set_multi() local 1380 &mta[mcnt * IXGBE_ETH_LENGTH_OF_ADDRESS], in ixv_set_multi() 1390 update_ptr = mta; in ixv_set_multi()
|
| /freebsd-9-stable/contrib/sendmail/ |
| D | RELEASE_NOTES | 136 O DaemonPortOptions=Family=local, Addr=/var/mta/server.sock 2532 file: client or mta). See sendmail/SECURITY.
|