Home
last modified time | relevance | path

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

/titanic_44/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()
74 (void) memset(dstext, 0, sizeof (KMF_X509_EXTENSION)); in copy_extension_data()
76 ret = copy_data(&dstext->extnId, &srcext->extnId); 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()
84 ret = copy_data(&dstext->BERvalue, &srcext->BERvalue); in copy_extension_data()
88 dstext->value.tagAndValue = malloc(sizeof (KMF_X509EXT_TAGandVALUE)); in copy_extension_data()
89 if (dstext->value.tagAndValue == NULL) { in copy_extension_data()
[all …]
/titanic_44/usr/src/uts/common/inet/ip/
H A Dsadb.c1942 sadb_address_t *srcext, *dstext; in sadb_addrfix() local
2066 dstext = (sadb_address_t *)extv[SADB_EXT_ADDRESS_DST]; in sadb_addrfix()
2069 if (dstext == NULL || srcext == NULL) in sadb_addrfix()
2072 dst = (struct sockaddr_in6 *)(dstext + 1); in sadb_addrfix()
2088 if (srcext->sadb_address_proto != dstext->sadb_address_proto) { in sadb_addrfix()
2090 srcext->sadb_address_proto = dstext->sadb_address_proto; in sadb_addrfix()
2091 } else if (dstext->sadb_address_proto == 0) { in sadb_addrfix()
2092 dstext->sadb_address_proto = srcext->sadb_address_proto; in sadb_addrfix()
2224 sq->dstext = (sadb_address_t *)ksi->ks_in_extv[SADB_EXT_ADDRESS_DST]; in sadb_form_query()
2228 if ((req & IPSA_Q_DST) && (sq->dstext == NULL)) { in sadb_form_query()
[all …]
H A Dipsecah.c1037 sadb_address_t *dstext = in ah_add_sa() local
1061 if (dstext == NULL) { in ah_add_sa()
1083 dst = (struct sockaddr_in *)(dstext + 1); in ah_add_sa()
1168 sadb_address_t *dstext = in ah_update_sa() local
1173 if (dstext == NULL) { in ah_update_sa()
1203 sadb_address_t *dstext = in ah_del_sa() local
1210 if (dstext != NULL) in ah_del_sa()
1211 sin = (struct sockaddr_in *)(dstext + 1); in ah_del_sa()
H A Dipsecesp.c3565 sadb_address_t *dstext = local
3596 if (dstext == NULL) {
3618 dst = (struct sockaddr_in *)(dstext + 1);
3801 sadb_address_t *dstext = local
3804 if (dstext == NULL) {
3834 sadb_address_t *dstext = local
3841 if (dstext != NULL) {
3842 sin = (struct sockaddr_in *)(dstext + 1);
/titanic_44/usr/src/uts/common/inet/
H A Dsadb.h682 sadb_address_t *srcext, *dstext; member