当前位置: 首页>>代码示例>>Python>>正文


Python util.is_hoppish方法代码示例

本文整理汇总了Python中gunicorn.util.is_hoppish方法的典型用法代码示例。如果您正苦于以下问题:Python util.is_hoppish方法的具体用法?Python util.is_hoppish怎么用?Python util.is_hoppish使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在gunicorn.util的用法示例。


在下文中一共展示了util.is_hoppish方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: process_headers

# 需要导入模块: from gunicorn import util [as 别名]
# 或者: from gunicorn.util import is_hoppish [as 别名]
def process_headers(self, headers):
        for name, value in headers:
            if not isinstance(name, string_types):
                raise TypeError('%r is not a string' % name)
            value = str(value).strip()
            lname = name.lower().strip()
            if lname == "content-length":
                self.response_length = int(value)
            elif util.is_hoppish(name):
                if lname == "connection":
                    # handle websocket
                    if value.lower().strip() == "upgrade":
                        self.upgrade = True
                elif lname == "upgrade":
                    if value.lower().strip() == "websocket":
                        self.headers.append((name.strip(), value))

                # ignore hopbyhop headers
                continue
            self.headers.append((name.strip(), value)) 
开发者ID:RoseOu,项目名称:flasky,代码行数:22,代码来源:wsgi.py

示例2: process_headers

# 需要导入模块: from gunicorn import util [as 别名]
# 或者: from gunicorn.util import is_hoppish [as 别名]
def process_headers(self, headers):
        for name, value in headers:
            if not isinstance(name, string_types):
                raise TypeError('%r is not a string' % name)

            if HEADER_RE.search(name):
                raise InvalidHeaderName('%r' % name)

            if HEADER_VALUE_RE.search(value):
                raise InvalidHeader('%r' % value)

            value = str(value).strip()
            lname = name.lower().strip()
            if lname == "content-length":
                self.response_length = int(value)
            elif util.is_hoppish(name):
                if lname == "connection":
                    # handle websocket
                    if value.lower().strip() == "upgrade":
                        self.upgrade = True
                elif lname == "upgrade":
                    if value.lower().strip() == "websocket":
                        self.headers.append((name.strip(), value))

                # ignore hopbyhop headers
                continue
            self.headers.append((name.strip(), value)) 
开发者ID:yelongyu,项目名称:chihu,代码行数:29,代码来源:wsgi.py


注:本文中的gunicorn.util.is_hoppish方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。