nicojensen.de/vendor/bundle/gems/em-websocket-0.5.1/lib/em-websocket/framing04.rb
Nico Jensen b59a203dbb Init
Init commit
2019-03-12 13:49:49 +01:00

15 lines
No EOL
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