xmpp-vala: catch TLS errors during read()
This commit is contained in:
parent
e44cad1b92
commit
f78818abbe
|
@ -54,6 +54,8 @@ public class StanzaReader {
|
|||
buffer_pos = 0;
|
||||
} catch (GLib.IOError e) {
|
||||
throw new XmlError.IO_ERROR("IOError in GLib: %s".printf(e.message));
|
||||
} catch (GLib.TlsError e) {
|
||||
throw new XmlError.IO_ERROR("TlsError in GLib: %s".printf(e.message));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue