I have found my way over here after trying to use https://github.com/vbmithr/ocaml-websocket and realizing that ws:// and wss:// from RFC6455 are not supported. The library seems to work correctly with websockets when using http:// or https:// though so this seems to be mostly a cosmetic issue that might be easily sorted by changing this into:
| "http" | "ws" -> (module Http : Scheme)
| "https" | "wss" -> (module Https : Scheme)
Would this be acceptable?
I have found my way over here after trying to use https://github.com/vbmithr/ocaml-websocket and realizing that
ws://andwss://from RFC6455 are not supported. The library seems to work correctly with websockets when usinghttp://orhttps://though so this seems to be mostly a cosmetic issue that might be easily sorted by changing this into:Would this be acceptable?