diff options
author | Clombrong <cromblong@egregore.fun> | 2025-06-25 18:06:07 +0200 |
---|---|---|
committer | Clombrong <cromblong@egregore.fun> | 2025-06-25 18:06:07 +0200 |
commit | 9b22f650dafeb8dc193dadd1a10182724382c6a7 (patch) | |
tree | d1d64e6b0fbef0c00273cd03f5c33efa90797ff9 /portal/tcp | |
parent | 5f52ab70862cfa8332ec5bd9d1dc3d3f6af37d16 (diff) |
chore: move comments to correct location
Diffstat (limited to 'portal/tcp')
-rw-r--r-- | portal/tcp/portal_tcp.ml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/portal/tcp/portal_tcp.ml b/portal/tcp/portal_tcp.ml index cfe35dd..3aa5e56 100644 --- a/portal/tcp/portal_tcp.ml +++ b/portal/tcp/portal_tcp.ml @@ -1,8 +1,8 @@ -let xmpp_port (_domain : string) : int = 5222 - (** [xmpp_port domain] is the port where [domain]'s XMPP server is hosted. +(** [xmpp_port domain] is the port where [domain]'s XMPP server is hosted. - Currently, it falls back to 5222 (always), but should use SRV records in the near - future. *) + Currently, it falls back to 5222 (always), but should use SRV records in the near + future. *) +let xmpp_port (_domain : string) : int = 5222 let connect (domain : string) = xmpp_port domain |> string_of_int |> print_endline |