rf-web/vendor/bundle/gems/em-websocket-0.5.1/lib/em-websocket/framing04.rb
2019-10-21 10:18:17 +02:00

15 lines
298 B
Ruby

# encoding: BINARY
module EventMachine
module WebSocket
# The only difference between draft 03 framing and draft 04 framing is
# that the MORE bit has been changed to a FIN bit
module Framing04
include Framing03
private
def fin; true; end
end
end
end