rf-web/vendor/bundle/gems/em-websocket-0.5.1/lib/em-websocket/handler76.rb

15 lines
282 B
Ruby
Raw Normal View History

2019-10-21 08:18:17 +00:00
# encoding: BINARY
module EventMachine
module WebSocket
class Handler76 < Handler
include Handshake76
include Framing76
include Close75
# "\377\000" is octet version and "\xff\x00" is hex version
TERMINATE_STRING = "\xff\x00"
end
end
end