Searched refs:esptail (Results 1 – 3 of 3) sorted by relevance
222 struct esptail esptail; in esp4_input_extended() local444 if (m->m_pkthdr.len < off + esplen + ivlen + sizeof(esptail)) { in esp4_input_extended()517 m_copydata(m, m->m_pkthdr.len - sizeof(esptail), sizeof(esptail), in esp4_input_extended()518 (caddr_t)&esptail); in esp4_input_extended()519 nxt = esptail.esp_nxt; in esp4_input_extended()520 taillen = esptail.esp_padlen + sizeof(esptail); in esp4_input_extended()932 struct esptail esptail; in esp6_input_extended() local1152 if (m->m_pkthdr.len < off + esplen + ivlen + sizeof(esptail)) { in esp6_input_extended()1226 m_copydata(m, m->m_pkthdr.len - sizeof(esptail), sizeof(esptail), in esp6_input_extended()1227 (caddr_t)&esptail); in esp6_input_extended()[all …]
249 struct esptail *esptail; in esp_output() local732 esptail = (struct esptail *) in esp_output()733 (mtod(n, u_int8_t *) + n->m_len - sizeof(struct esptail)); in esp_output()734 esptail->esp_nxt = nxt; in esp_output()736 esptail->esp_padlen = (u_int8_t)(extendsiz - 2); in esp_output()976 struct esptail *esptail = NULL; in esp_kpipe_output() local1198 esptail = (struct esptail *)(sbaddr + slen + extendsiz - sizeof(struct esptail)); in esp_kpipe_output()1199 esptail->esp_nxt = nxt_proto; in esp_kpipe_output()1200 esptail->esp_padlen = (u_int8_t)(extendsiz - 2); in esp_kpipe_output()
92 struct esptail { struct