diff options
author | Clombrong <cromblong@egregore.fun> | 2025-06-29 20:03:27 +0200 |
---|---|---|
committer | Clombrong <cromblong@egregore.fun> | 2025-06-29 20:03:27 +0200 |
commit | fcd21d19f0748bcc7a0e691df1df25c9b0ecd610 (patch) | |
tree | 7c7dc2b77e38a59c4616a4b69d58e896f483d4e1 /lib/flesh.ml | |
parent | 2cda07bc71e90f0b0d8cea6792192b5af88b35f7 (diff) |
style(stream): rename negotiate_feature to negotiate
Diffstat (limited to 'lib/flesh.ml')
-rw-r--r-- | lib/flesh.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/flesh.ml b/lib/flesh.ml index 51f1b6c..55eeefc 100644 --- a/lib/flesh.ml +++ b/lib/flesh.ml @@ -25,7 +25,7 @@ let connect (domain : string) (config : Stream.config) : (Portal.t * Stream.feat let rec handle_features (features : Stream.features) : Stream.features Lwt.t = match features with | feature :: mandatory, optional -> - let* () = Stream.negotiate_feature true feature portal config + let* () = Stream.negotiate true feature portal config in if needs_restart feature then Stream.start domain portal >>= handle_features else handle_features (mandatory, optional) |