Home
last modified time | relevance | path

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

/dports/net/liblinphone/linphone-3.12.0/coreapi/
H A Dlime.h60 …char *peerURI; /**< the peer sip URI associated to all the keys, must be a null terminated strin… member
86 …chedRcvKeyByZid(void *cachedb, limeKey_t *associatedKey, const char *selfURI, const char *peerURI);
182 …st char *contentType, uint8_t *message, const char *selfURI, const char *peerURI, uint8_t **output…
197 …essage(void *cachedb, uint8_t *message, const char *selfURI, const char *peerURI, uint8_t **output…
H A Dlime.c67 sqlite3_bind_text(sqlStmt, 1, associatedKeys->peerURI,-1, SQLITE_TRANSIENT); in lime_getCachedSndKeysByURI()
77 sqlite3_bind_text(sqlStmt, 2, associatedKeys->peerURI,-1, SQLITE_TRANSIENT); in lime_getCachedSndKeysByURI()
177 …hedRcvKeyByZid(void *cachedb, limeKey_t *associatedKey, const char *selfURI, const char *peerURI) { in lime_getCachedRcvKeyByZid() argument
201 sqlite3_bind_text(sqlStmt, 2, peerURI,-1, SQLITE_TRANSIENT); in lime_getCachedRcvKeyByZid()
366 bctbx_free(associatedKeys->peerURI); in lime_freeKeys()
367 associatedKeys->peerURI = NULL; in lime_freeKeys()
484 associatedKeys.peerURI = bctbx_strdup(peerURI); in lime_createMultipartMessage()
628 retval = lime_getCachedRcvKeyByZid(cachedb, &associatedKey, selfURI, peerURI); in lime_decryptMultipartMessage()
703 sessionIndexHex, peerURI, associatedKeyIndexHex, usedSessionIndex-associatedKey.sessionIndex); in lime_decryptMultipartMessage()
761 associatedKeys.peerURI = bctbx_strdup(peer); in linphone_chat_room_lime_available()
[all …]
/dports/net-im/dendrite/dendrite-0.5.1/cmd/dendrite-demo-yggdrasil/yggconn/
H A Dnode.go63 func Setup(instanceName, storageDirectory, peerURI string) (*Node, error) {
84 if peerURI != "" {
85 n.config.Peers = append(n.config.Peers, peerURI)
/dports/security/bzrtp/bzrtp-1.0.6/include/bzrtp/
H A Dbzrtp.h239 …rtp_setZIDCache(bzrtpContext_t *context, void *zidCache, const char *selfURI, const char *peerURI);
426 BZRTP_EXPORT int bzrtp_cache_getZuid(void *dbPointer, const char *selfURI, const char *peerURI, con…
/dports/security/bzrtp/bzrtp-1.0.6/src/
H A DzidCache.c303 sqlite3_bind_text(sqlStmt, 2, context->peerURI,-1,SQLITE_TRANSIENT); in bzrtp_getPeerAssociatedSecrets()
311 …return bzrtp_cache_getZuid((void *)context->zidCache, context->selfURI, context->peerURI, context-… in bzrtp_getPeerAssociatedSecrets()
379 int bzrtp_cache_getZuid(void *dbPointer, const char *selfURI, const char *peerURI, const uint8_t pe… in bzrtp_cache_getZuid() argument
398 sqlite3_bind_text(sqlStmt, 2, peerURI,-1,SQLITE_TRANSIENT); in bzrtp_cache_getZuid()
430 sqlite3_bind_text(sqlStmt, 3, peerURI,-1,SQLITE_TRANSIENT); in bzrtp_cache_getZuid()
H A Dbzrtp.c118 …tp_setZIDCache(bzrtpContext_t *context, void *zidCache, const char *selfURI, const char *peerURI) { in bzrtp_setZIDCache() argument
128 context->peerURI = strdup(peerURI); in bzrtp_setZIDCache()
241 free(context->peerURI); in bzrtp_destroyBzrtpContext()
/dports/security/bzrtp/bzrtp-1.0.6/include/
H A Dtypedef.h243 char *peerURI; /**< a null terminated string storing the peer user URI **/ member
/dports/security/bzrtp/bzrtp-1.0.6/test/
H A DbzrtpConfigsTest.c180 …t, uint8_t clientID, uint32_t SSRC, void *zidCache, char *selfURI, char *peerURI, cryptoParams_t *… in setUpClientContext() argument
199 retval = bzrtp_setZIDCache(clientContext->bzrtpContext, zidCache, selfURI, peerURI); in setUpClientContext()