summaryrefslogtreecommitdiff
path: root/pjsip/include/pjsua-lib/pjsua.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2007-10-10 11:37:56 +0000
committerBenny Prijono <bennylp@teluu.com>2007-10-10 11:37:56 +0000
commita3354959d1493f86392296ab0e78512e633abf40 (patch)
tree8e73a0994d92c5b97d77cf43165f2bc84d5313a3 /pjsip/include/pjsua-lib/pjsua.h
parent0cb2d5b9e84601bb822a300c48a4ea8397d85850 (diff)
Ticket #396: initial implementation of digest AKA (akav1-md5) authentication for IMS/3GPP
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@1488 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip/include/pjsua-lib/pjsua.h')
-rw-r--r--pjsip/include/pjsua-lib/pjsua.h16
1 files changed, 2 insertions, 14 deletions
diff --git a/pjsip/include/pjsua-lib/pjsua.h b/pjsip/include/pjsua-lib/pjsua.h
index fad79178..91856d2c 100644
--- a/pjsip/include/pjsua-lib/pjsua.h
+++ b/pjsip/include/pjsua-lib/pjsua.h
@@ -1029,20 +1029,8 @@ typedef struct pjsua_config
PJ_DECL(void) pjsua_config_default(pjsua_config *cfg);
-/**
- * Duplicate credential.
- *
- * @param pool The memory pool.
- * @param dst Destination credential.
- * @param src Source credential.
- *
- * \par Python:
- * Not applicable (for now). Probably we could just assign one credential
- * variable to another, but this has not been tested.
- */
-PJ_DECL(void) pjsip_cred_dup( pj_pool_t *pool,
- pjsip_cred_info *dst,
- const pjsip_cred_info *src);
+/* The implementation has been moved to sip_auth.h */
+#define pjsip_cred_dup pjsip_cred_info_dup
/**