Skip to content

Support latest 3GPP TS 33102 #4414

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pjsip/include/pjsip/sip_auth_aka.h
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ PJ_BEGIN_DECL
/**
* Length of permanent/subscriber Key (K) in bytes.
*/
#define PJSIP_AKA_KLEN 16
#define PJSIP_AKA_KLEN 32

/**
* Length of AKA authentication code in bytes.
Expand Down
7 changes: 6 additions & 1 deletion pjsip/src/pjsua-lib/pjsua_acc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2767,7 +2767,12 @@ static pj_status_t pjsua_regc_init(int acc_id)
/* Set credentials
*/
if (acc->cred_cnt) {
pjsip_regc_set_credentials( acc->regc, acc->cred_cnt, acc->cred);
status = pjsip_regc_set_credentials( acc->regc, acc->cred_cnt, acc->cred);
if (status != PJ_SUCCESS) {
pjsua_perror(THIS_FILE,
"Cannot set credentials for registration",
status);
}
}

/* Set delay before registration refresh */
Expand Down
Loading