mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-06 21:33:08 +00:00
add lime stubbed functions
This commit is contained in:
parent
228859ce6b
commit
142d465862
1 changed files with 12 additions and 2 deletions
|
|
@ -825,8 +825,18 @@ void lime_freeKeys(limeURIKeys_t *associatedKeys){
|
|||
int lime_getCachedSndKeysByURI(xmlDocPtr cacheBuffer, limeURIKeys_t *associatedKeys){
|
||||
return LIME_NOT_ENABLED;
|
||||
}
|
||||
|
||||
|
||||
int lime_encryptMessage(limeKey_t *key, uint8_t *plainMessage, uint32_t messageLength, uint8_t selfZID[12], uint8_t *encryptedMessage) {
|
||||
return LIME_NOT_ENABLED;
|
||||
}
|
||||
int lime_setCachedKey(xmlDocPtr cacheBuffer, limeKey_t *associatedKey, uint8_t role) {
|
||||
return LIME_NOT_ENABLED;
|
||||
}
|
||||
int lime_getCachedRcvKeyByZid(xmlDocPtr cacheBuffer, limeKey_t *associatedKey) {
|
||||
return LIME_NOT_ENABLED;
|
||||
}
|
||||
int lime_decryptMessage(limeKey_t *key, uint8_t *encryptedMessage, uint32_t messageLength, uint8_t selfZID[12], uint8_t *plainMessage) {
|
||||
return LIME_NOT_ENABLED;
|
||||
}
|
||||
#endif /* HAVE_LIME */
|
||||
|
||||
char *lime_error_code_to_string(int errorCode) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue