Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
sofia-sip
Commits
6b447235
Commit
6b447235
authored
Apr 17, 2006
by
Mikko Paavonen
Browse files
Disabled ntlm client for now.
darcs-hash:20060417082318-ba75a-9041bcaf25b04efaf003e0e44413993dbad77760.gz
parent
c4623b29
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
libsofia-sip-ua/iptsec/auth_client.c
libsofia-sip-ua/iptsec/auth_client.c
+4
-1
No files found.
libsofia-sip-ua/iptsec/auth_client.c
View file @
6b447235
...
...
@@ -108,12 +108,13 @@ static msg_header_t *auc_digest_authorization(auth_client_t *ca,
char
const
*
method
,
url_t
const
*
url
,
msg_payload_t
const
*
body
);
#if notyet
static
msg_header_t
*
auc_ntlm_authorization
(
auth_client_t
*
ca
,
su_home_t
*
h
,
char
const
*
method
,
url_t
const
*
url
,
msg_payload_t
const
*
body
);
#endif
/** Allocate a dummy auth_client_t structure. */
auth_client_t
*
ca_create
(
su_home_t
*
home
)
...
...
@@ -239,9 +240,11 @@ int ca_challenge(auth_client_t *ca,
else
if
(
strcasecmp
(
scheme
,
"Digest"
)
==
0
)
{
ca
->
ca_authorize
=
auc_digest_authorization
;
}
#if notyet
else
if
(
strcasecmp
(
scheme
,
"NTLM"
)
==
0
)
{
ca
->
ca_authorize
=
auc_ntlm_authorization
;
}
#endif
else
return
-
1
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment