summaryrefslogtreecommitdiff
path: root/vendor/bundle/ruby/3.4.0/gems/em-websocket-0.5.3/lib/em-websocket/framing04.rb
blob: 41352e6361965b0bcf7e14ff8d5296fdd45d637c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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