# frozen_string_literal: true module WebSocket module Frame class Outgoing class Server < Outgoing def incoming_masking? @handler.masking? end def outgoing_masking? false end end end end end