lib/websocket/frame/outgoing/server.rb in websocket-1.0.5 vs lib/websocket/frame/outgoing/server.rb in websocket-1.0.6
- old
+ new
@@ -1,9 +1,19 @@
module WebSocket
module Frame
class Outgoing
class Server < Outgoing
+ private
+
+ def incoming_masking?
+ masking?
+ end
+
+ def outgoing_masking?
+ false
+ end
+
end
end
end
end