Home | History | Annotate | Download | only in handshake

Lines Matching refs:http_header_util

37 from mod_pywebsocket import http_header_util
107 state = http_header_util.ParsingState(subprotocol)
108 token = http_header_util.consume_token(state)
109 rest = http_header_util.peek(state)
193 state = http_header_util.ParsingState(data)
198 token = http_header_util.consume_token(state)
202 http_header_util.consume_lwses(state)
204 if http_header_util.peek(state) is None:
207 if not http_header_util.consume_string(state, ','):
209 'Expected a comma but found %r' % http_header_util.peek(state))
211 http_header_util.consume_lwses(state)