|
@ -4,7 +4,7 @@ decl interface @name; |
|
|
decl exception @name; |
|
|
decl exception @name; |
|
|
decl method @name; |
|
|
decl method @name; |
|
|
decl struct @name; |
|
|
decl struct @name; |
|
|
decl basic @type @name; |
|
|
decl basic @sync @type @name; |
|
|
|
|
|
|
|
|
namespace pEp { |
|
|
namespace pEp { |
|
|
exception Status { |
|
|
exception Status { |
|
@ -249,21 +249,21 @@ namespace pEp { |
|
|
in CipherSuite suite |
|
|
in CipherSuite suite |
|
|
); |
|
|
); |
|
|
|
|
|
|
|
|
basic string trustwords(identity ident); |
|
|
basic none string trustwords(identity ident); |
|
|
basic identity myself(identity ident); |
|
|
basic sync identity myself(identity ident); |
|
|
basic identity updateIdentity(identity ident); |
|
|
basic none identity updateIdentity(identity ident); |
|
|
basic identity setOwnKey(identity ident, string fpr); |
|
|
basic none identity setOwnKey(identity ident, string fpr); |
|
|
basic void keyMistrusted(identity ident); |
|
|
basic none void keyMistrusted(identity ident); |
|
|
basic void keyResetTrust(identity ident); |
|
|
basic none void keyResetTrust(identity ident); |
|
|
basic void trustPersonalKey(identity ident); |
|
|
basic none void trustPersonalKey(identity ident); |
|
|
basic void trustOwnKey(identity ident); |
|
|
basic none void trustOwnKey(identity ident); |
|
|
basic void importKey(bytearray key); |
|
|
basic none void importKey(bytearray key); |
|
|
basic void blacklist_add(string fpr); |
|
|
basic none void blacklist_add(string fpr); |
|
|
basic void blacklist_delete(string fpr); |
|
|
basic none void blacklist_delete(string fpr); |
|
|
basic bool blacklist_is_listed(string fpr); |
|
|
basic none bool blacklist_is_listed(string fpr); |
|
|
basic void config_passive_mode(bool enable); |
|
|
basic none void config_passive_mode(bool enable); |
|
|
basic void config_unencrypted_subject(bool enable); |
|
|
basic none void config_unencrypted_subject(bool enable); |
|
|
basic string getCrashdumpLog(int maxlines); |
|
|
basic none string getCrashdumpLog(int maxlines); |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
struct message { |
|
|
struct message { |
|
|