diff options
author | Clombrong <cromblong@egregore.fun> | 2025-08-15 00:12:39 +0200 |
---|---|---|
committer | Clombrong <cromblong@egregore.fun> | 2025-08-15 00:14:31 +0200 |
commit | e9c9de288d9934a252dcef58b935ce6e145a65cd (patch) | |
tree | d61d6951f5f11538fab8c8f58d211547b226ef45 /portal/portal.mli | |
parent | 5d31409b2e1a3624b23e894b606c1412546fc5ee (diff) |
feat(portal): add domain to portal type
Diffstat (limited to 'portal/portal.mli')
-rw-r--r-- | portal/portal.mli | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/portal/portal.mli b/portal/portal.mli index 10b6bc3..52a96ce 100644 --- a/portal/portal.mli +++ b/portal/portal.mli @@ -17,6 +17,7 @@ val domain_to_string : domain -> string [push None] closes the XMPP stream and disconnects the underlying [_socket]. This is how XMPP streams should be ended. *) type t = { + domain : domain; mutable stream : (signal, async) stream; mutable push : (signal, sync) stream option -> unit; mutable _socket : socket; |