12 lines
282 B
Python
12 lines
282 B
Python
# Copyright 2012 The Chromium Authors
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
|
|
def web_socket_do_extra_handshake(_request):
|
|
pass # Always accept.
|
|
|
|
|
|
def web_socket_transfer_data(_request):
|
|
pass # Close immediately
|