Jellyfin(8096), OrbStack(8097) 포트 충돌으로 변경. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
31 lines
559 B
Python
31 lines
559 B
Python
"""
|
|
hpack
|
|
~~~~~
|
|
|
|
HTTP/2 header encoding for Python.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from .exceptions import (
|
|
HPACKDecodingError,
|
|
HPACKError,
|
|
InvalidTableIndex,
|
|
InvalidTableSizeError,
|
|
OversizedHeaderListError,
|
|
)
|
|
from .hpack import Decoder, Encoder
|
|
from .struct import HeaderTuple, NeverIndexedHeaderTuple
|
|
|
|
__all__ = [
|
|
"Encoder",
|
|
"Decoder",
|
|
"HeaderTuple",
|
|
"NeverIndexedHeaderTuple",
|
|
"HPACKError",
|
|
"HPACKDecodingError",
|
|
"InvalidTableIndex",
|
|
"OversizedHeaderListError",
|
|
"InvalidTableSizeError",
|
|
]
|