Home
last modified time | relevance | path

Searched refs:dstext (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/test/os-tests/tests/pf_key/
H A Dkmc-updater.c82 sadb_address_t *dstext, *srcext; in main() local
178 2 * (sizeof (*dstext) + sizeof (*sin)) + sizeof (*kmcext)); in main()
189 dstext = (sadb_address_t *)(saext + 1); in main()
190 dstext->sadb_address_len = SADB_8TO64(sizeof (*dstext) + sizeof (*sin)); in main()
191 dstext->sadb_address_exttype = SADB_EXT_ADDRESS_DST; in main()
192 dstext->sadb_address_proto = 0; in main()
193 dstext->sadb_address_prefixlen = 0; in main()
194 dstext->sadb_address_reserved = 0; in main()
195 sin = (struct sockaddr_in *)(dstext + 1); in main()
/illumos-gate/usr/src/lib/libkmf/libkmf/common/
H A Dcertgetsetop.c66 copy_extension_data(KMF_X509_EXTENSION *dstext, in copy_extension_data() argument
71 if (dstext == NULL || srcext == NULL) in copy_extension_data()
80 dstext->extnId.Length = srcext->extnId.Length; in copy_extension_data()
81 dstext->critical = srcext->critical; in copy_extension_data()
82 dstext->format = srcext->format; in copy_extension_data()
89 if (dstext->value.tagAndValue == NULL) { in copy_extension_data()
93 (void) memset(dstext->value.tagAndValue, 0, in copy_extension_data()
105 if (dstext->extnId.Data != NULL) in copy_extension_data()
106 kmf_free_data(&dstext->extnId); in copy_extension_data()
108 if (dstext->BERvalue.Data != NULL) in copy_extension_data()
[all …]
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dsadb.c1948 sadb_address_t *srcext, *dstext; in sadb_addrfix() local
2075 if (dstext == NULL || srcext == NULL) in sadb_addrfix()
2078 dst = (struct sockaddr_in6 *)(dstext + 1); in sadb_addrfix()
2252 if (sq->dstext != NULL) in sadb_form_query()
2916 sadb_address_t *dstext = local
2962 if (dstext == NULL) {
2973 dst = (struct sockaddr_in *)(dstext + 1);
3047 dstext->sadb_address_proto =
3070 dstext->sadb_address_proto =
6775 dst = (struct sockaddr_in *)(dstext + 1);
[all …]
H A Dipsecah.c1025 sadb_address_t *dstext = in ah_add_sa() local
1049 if (dstext == NULL) { in ah_add_sa()
1071 dst = (struct sockaddr_in *)(dstext + 1); in ah_add_sa()
1156 sadb_address_t *dstext = in ah_update_sa() local
1161 if (dstext == NULL) { in ah_update_sa()
1191 sadb_address_t *dstext = in ah_del_sa() local
1198 if (dstext != NULL) in ah_del_sa()
1199 sin = (struct sockaddr_in *)(dstext + 1); in ah_del_sa()
H A Dipsecesp.c3323 sadb_address_t *dstext = local
3354 if (dstext == NULL) {
3376 dst = (struct sockaddr_in *)(dstext + 1);
3559 sadb_address_t *dstext = local
3562 if (dstext == NULL) {
3592 sadb_address_t *dstext = local
3599 if (dstext != NULL) {
3600 sin = (struct sockaddr_in *)(dstext + 1);
/illumos-gate/usr/src/uts/common/inet/
H A Dsadb.h682 sadb_address_t *srcext, *dstext; member