diff options
author | Clombrong <cromblong@egregore.fun> | 2025-08-15 21:04:04 +0200 |
---|---|---|
committer | Clombrong <cromblong@egregore.fun> | 2025-08-15 22:54:43 +0200 |
commit | 0fc9103f770e6135b6f7bc6145b685bb51b89ceb (patch) | |
tree | 764f50c1034f23cc953915508a86b5c211be3f33 /lib/sasl.ml | |
parent | d9de994b158a83122aa5623c3a2f848154d8140c (diff) |
feat: rename Wire to Segment
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 a7f30d9..1496877 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 Wire.get stream >|= parse_sasl_response + try Segment.get stream >|= parse_sasl_response with exn -> Lwt.fail exn let authenticate |