Home
last modified time | relevance | path

Searched refs:secashead (Results 1 – 5 of 5) sorted by relevance

/xnu-8796.121.2/bsd/netkey/
H A Dkeydb.c103 struct secashead *
106 struct secashead *p; in keydb_newsecashead()
110 p = kalloc_type(struct secashead, Z_NOWAIT | Z_ZERO); in keydb_newsecashead()
113 p = kalloc_type(struct secashead, Z_WAITOK | Z_ZERO | Z_NOFAIL); in keydb_newsecashead()
124 keydb_delsecashead(struct secashead *p)
126 kfree_type(struct secashead, p);
H A Dkeydb.h57 struct secashead { struct
58 LIST_ENTRY(secashead) chain;
111 struct secashead *sah; /* back pointer to the secashead */
172 extern struct secashead *keydb_newsecashead(void);
H A Dkey.h54 struct secashead;
91 extern void key_delsah(struct secashead *sah);
92 extern struct secashead *key_newsah2(struct secasindex *saidx, u_int8_t dir);
H A Dkey.c163 static LIST_HEAD(_sahtree, secashead) sahtree; /* SAD */
165 static LIST_HEAD(_custom_sahtree, secashead) custom_sahtree;
404 static struct secasvar *key_do_allocsa_policy(struct secashead *, u_int, u_int16_t);
405 static int key_do_get_translated_port(struct secashead *, struct secasvar *, u_int);
432 static struct secashead *key_newsah(struct secasindex *, ifnet_t, u_int, u_int8_t, u_int16_t);
434 const struct sadb_msghdr *, struct secashead *, int *,
436 static struct secashead *key_getsah(struct secasindex *, u_int16_t);
439 static struct secasvar *key_getsavbyspi(struct secashead *, u_int32_t);
573 struct secashead *sah = sav->sah; in key_get_flowid()
870 struct secashead *sah; in key_alloc_outbound_sav_for_interface()
[all …]
/xnu-8796.121.2/bsd/netinet6/
H A Desp_output.c406 struct secashead *sah = sav->sah; in esp_output()