Searched refs:shared_keys (Results 1 – 8 of 8) sorted by relevance
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/ |
D | sctp_auth.c | 494 sctp_find_sharedkey(struct sctp_keyhead *shared_keys, uint16_t key_id) in sctp_find_sharedkey() argument 498 LIST_FOREACH(skey, shared_keys, next) { in sctp_find_sharedkey() 506 sctp_insert_sharedkey(struct sctp_keyhead *shared_keys, in sctp_insert_sharedkey() argument 511 if ((shared_keys == NULL) || (new_skey == NULL)) in sctp_insert_sharedkey() 515 if (LIST_EMPTY(shared_keys)) { in sctp_insert_sharedkey() 516 LIST_INSERT_HEAD(shared_keys, new_skey, next); in sctp_insert_sharedkey() 520 LIST_FOREACH(skey, shared_keys, next) { in sctp_insert_sharedkey() 558 skey = sctp_find_sharedkey(&stcb->asoc.shared_keys, key_id); in sctp_auth_key_acquire() 575 skey = sctp_find_sharedkey(&stcb->asoc.shared_keys, key_id); in sctp_auth_key_release() 1229 skey = sctp_find_sharedkey(&stcb->asoc.shared_keys, keyid); [all …]
|
D | sctp_peeloff.c | 147 (void)sctp_copy_skeylist(&inp->sctp_ep.shared_keys, in sctp_do_peeloff() 148 &n_inp->sctp_ep.shared_keys); in sctp_do_peeloff() 259 (void)sctp_copy_skeylist(&inp->sctp_ep.shared_keys, in sctp_get_peeloff() 260 &n_inp->sctp_ep.shared_keys); in sctp_get_peeloff()
|
D | sctp_auth.h | 141 extern sctp_sharedkey_t *sctp_find_sharedkey(struct sctp_keyhead *shared_keys, 143 extern int sctp_insert_sharedkey(struct sctp_keyhead *shared_keys,
|
D | sctp_pcb.h | 374 struct sctp_keyhead shared_keys; member
|
D | sctp_usrreq.c | 5097 struct sctp_keyhead *shared_keys; local 5117 shared_keys = &stcb->asoc.shared_keys; 5143 error = sctp_insert_sharedkey(shared_keys, shared_key); 5152 shared_keys = &inp->sctp_ep.shared_keys; 5181 error = sctp_insert_sharedkey(shared_keys, shared_key); 5190 shared_keys = &stcb->asoc.shared_keys; 5212 error = sctp_insert_sharedkey(shared_keys, shared_key);
|
D | sctp_structs.h | 1139 struct sctp_keyhead shared_keys; /* assoc's shared keys */ member
|
D | sctp_pcb.c | 3060 LIST_INIT(&m->shared_keys); 3063 sctp_insert_sharedkey(&m->shared_keys, null_key); 4247 LIST_FOREACH_SAFE(shared_key, &inp->sctp_ep.shared_keys, next, nshared_key) { 5914 LIST_FOREACH_SAFE(shared_key, &asoc->shared_keys, next, nshared_key) {
|
D | sctputil.c | 1393 LIST_INIT(&asoc->shared_keys); in sctp_init_asoc()
|