Home | History | Annotate | Download | only in handshake

Lines Matching refs:http_header_util

37 from mod_pywebsocket import http_header_util
97 state = http_header_util.ParsingState(subprotocol)
98 token = http_header_util.consume_token(state)
99 rest = http_header_util.peek(state)
156 state = http_header_util.ParsingState(data)
161 token = http_header_util.consume_token(state)
165 http_header_util.consume_lwses(state)
167 if http_header_util.peek(state) is None:
170 if not http_header_util.consume_string(state, ','):
172 'Expected a comma but found %r' % http_header_util.peek(state))
174 http_header_util.consume_lwses(state)