Search | Google it | Results 1 - 1 of 1 for funcall:mtod from t2ex/bsd_source/t2ex/network/net/src_bsd/netinet/ip_flow.c (0.00 seconds) |
209: */ 210: if (IP_HDR_ALIGNED_P(mtod(m, const void *))) 211: ip = mtod(m, struct ip *); 212: else { 213: memcpy(&ip_store, mtod(m, const void *), sizeof(ip_store)); 214: ip = &ip_store; 285: */ 286: if (IP_HDR_ALIGNED_P(mtod(m, void *)) == 0) 287: memcpy(mtod(m, void *), &ip_store, sizeof(ip_store)); 288: