diff options
author | Clombrong <cromblong@egregore.fun> | 2025-06-27 08:33:40 +0200 |
---|---|---|
committer | Clombrong <cromblong@egregore.fun> | 2025-06-27 09:53:10 +0200 |
commit | 13273777453522c4b73083207b3ba50ea3ca6bd0 (patch) | |
tree | d51393040998bd5112201774c4c464b07e778bcd /lib/sasl.ml | |
parent | 9276b39bcbed5e368d86da1bf02cba01fc164772 (diff) |
feat(wire): move next and get from xml to wire
Diffstat (limited to 'lib/sasl.ml')
-rw-r--r-- | lib/sasl.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sasl.ml b/lib/sasl.ml index 1837044..81c4476 100644 --- a/lib/sasl.ml +++ b/lib/sasl.ml @@ -59,7 +59,7 @@ let send_auth_stanza ({stream; push; _} : Portal.t) localpart pass mechanism = `Text [gen_auth mechanism]; `End_element] in Some (Markup.of_list stanza_list) |> push; - try Xml.get stream >|= parse_sasl_response + try Wire.get stream >|= parse_sasl_response with exn -> Lwt.fail exn let authenticate |