diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-08-20 15:11:08 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-08-20 15:11:08 +0200 |
commit | cb612a12b952e349b96d427645aaeb55d15f509a (patch) | |
tree | f29298f41d2a7ea2a976616243aca64c2c2547ce /src/plugins/PublishingInterfaces.vala | |
parent | e7be93745e4a2ff3aa255227bef7b9d3b733aafa (diff) | |
parent | 143bfc9f801c84428074312d661f8e08803df83b (diff) |
Merge tag 'upstream/0.23.5'
Upstream version 0.23.5
Diffstat (limited to 'src/plugins/PublishingInterfaces.vala')
-rw-r--r-- | src/plugins/PublishingInterfaces.vala | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/src/plugins/PublishingInterfaces.vala b/src/plugins/PublishingInterfaces.vala index 6f06cba..7a8ac40 100644 --- a/src/plugins/PublishingInterfaces.vala +++ b/src/plugins/PublishingInterfaces.vala @@ -82,7 +82,14 @@ public errordomain PublishingError { * Indicates that the remote host has rejected the session identifier used by the local * client as out-of-date. The local client should acquire a new session identifier. */ - EXPIRED_SESSION + EXPIRED_SESSION, + + /** + * Indicates that a secure connection to the remote host cannot be + * established. This might have various reasons such as expired + * certificats, invalid certificates, self-signed certificates... + */ + SSL_FAILED } /** @@ -513,10 +520,10 @@ public interface PluginHost : GLib.Object, Spit.HostInterface { */ public interface Publishable : GLib.Object { - public static const string PARAM_STRING_BASENAME = "basename"; - public static const string PARAM_STRING_TITLE = "title"; - public static const string PARAM_STRING_COMMENT = "comment"; - public static const string PARAM_STRING_EVENTCOMMENT= "eventcomment"; + public const string PARAM_STRING_BASENAME = "basename"; + public const string PARAM_STRING_TITLE = "title"; + public const string PARAM_STRING_COMMENT = "comment"; + public const string PARAM_STRING_EVENTCOMMENT= "eventcomment"; /** * Returns a handle to the file on disk to which this publishable's data has been |