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

15 lines
298 B
Ruby
Raw Normal View History

2019-10-21 08:18:17 +00:00
# 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