Home
last modified time | relevance | path

Searched refs:authinfo (Results 1 – 8 of 8) sorted by relevance

/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_auth.c811 sctp_free_authinfo(sctp_authinfo_t *authinfo) argument
813 if (authinfo == NULL)
816 if (authinfo->random != NULL)
817 sctp_free_key(authinfo->random);
818 if (authinfo->peer_random != NULL)
819 sctp_free_key(authinfo->peer_random);
820 if (authinfo->assoc_key != NULL)
821 sctp_free_key(authinfo->assoc_key);
822 if (authinfo->recv_key != NULL)
823 sctp_free_key(authinfo->recv_key);
[all …]
Dsctp_auth.h166 extern void sctp_free_authinfo(sctp_authinfo_t *authinfo);
Dsctp_output.c3578 struct sctp_authinfo authinfo; local
3659 m_copydata(control, cmsg_data_off, sizeof(struct sctp_authinfo), (caddr_t)&authinfo);
3661 sndrcvinfo->sinfo_keynumber = authinfo.auth_keynumber;
5226 if (stcb->asoc.authinfo.random != NULL) {
5235 parameter_len = (uint16_t)sizeof(struct sctp_auth_random) + stcb->asoc.authinfo.random_len;
5237 memcpy(randp, stcb->asoc.authinfo.random->key, parameter_len);
6956 sp->auth_keyid = stcb->asoc.authinfo.active_keyid;
8406 auth_keyid = stcb->asoc.authinfo.active_keyid;
8765 stcb->asoc.authinfo.active_keyid,
9036 stcb->asoc.authinfo.active_keyid,
[all …]
Dsctp_structs.h1140 sctp_authinfo_t authinfo; /* randoms, cached keys */ member
Dsctp_pcb.c5912 sctp_free_authinfo(&asoc->authinfo);
7665 if (stcb->asoc.authinfo.peer_random != NULL)
7666 sctp_free_key(stcb->asoc.authinfo.peer_random);
7667 stcb->asoc.authinfo.peer_random = new_key;
7668 sctp_clear_cachedkeys(stcb, stcb->asoc.authinfo.assoc_keyid);
7669 sctp_clear_cachedkeys(stcb, stcb->asoc.authinfo.recv_keyid);
Dsctputil.c1387 asoc->authinfo.random = NULL; in sctp_init_asoc()
1388 asoc->authinfo.active_keyid = 0; in sctp_init_asoc()
1389 asoc->authinfo.assoc_key = NULL; in sctp_init_asoc()
1390 asoc->authinfo.assoc_keyid = 0; in sctp_init_asoc()
1391 asoc->authinfo.recv_key = NULL; in sctp_init_asoc()
1392 asoc->authinfo.recv_keyid = 0; in sctp_init_asoc()
Dsctp_usrreq.c3555 scact->scact_keynumber = stcb->asoc.authinfo.active_keyid;
/third_party/python/Lib/urllib/
Drequest.py854 for uris, authinfo in domains.items():
857 return authinfo