Skip to content

Commit 8b2d827

Browse files
Bumped version to 1.3.5.post35
Updated vendor constant enumerations at Sat Nov 22 10:05:23 UTC 2025. The following files have been changed: pcapkit/const/http/method.py pcapkit/const/reg/apptype.py
1 parent 0a6a52e commit 8b2d827

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

pcapkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,4 +121,4 @@
121121
]
122122

123123
#: version number
124-
__version__ = '1.3.5.post34'
124+
__version__ = '1.3.5.post35'

pcapkit/const/http/method.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ def __repr__(self) -> 'str':
5050
#: BIND [:rfc:`5842#section-4`]
5151
BIND = 'BIND', False, True
5252

53-
#: CHECKIN [:rfc:`3253#section-4.4,-section-9.4`]
53+
#: CHECKIN [:rfc:`3253#section-9.4`]
5454
CHECKIN = 'CHECKIN', False, True
5555

56-
#: CHECKOUT [:rfc:`3253#section-4.3,-section-8.8`]
56+
#: CHECKOUT [:rfc:`3253#section-8.8`]
5757
CHECKOUT = 'CHECKOUT', False, True
5858

5959
#: CONNECT [:rfc:`9110#section-9.3.6`]
@@ -126,6 +126,9 @@ def __repr__(self) -> 'str':
126126
#: PUT [:rfc:`9110#section-9.3.4`]
127127
PUT = 'PUT', False, True
128128

129+
#: QUERY [RFC-ietf-httpbis-safe-method-w-body-14, Section 2]
130+
QUERY = 'QUERY', True, True
131+
129132
#: REBIND [:rfc:`5842#section-6`]
130133
REBIND = 'REBIND', False, True
131134

pcapkit/const/reg/apptype.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7067,9 +7067,9 @@ def __hash__(self) -> 'int':
70677067
#: - [UDP] UniSQL Java
70687068
unisql_java: 'AppType' = 1979, 'unisql-java', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
70697069

7070-
#: - [TCP] PearlDoc XACT
7071-
#: - [UDP] PearlDoc XACT
7072-
pearldoc_xact: 'AppType' = 1980, 'pearldoc-xact', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
7070+
#: - [TCP] PanQuest XACT
7071+
#: - [UDP] PanQuest XACT
7072+
panquest_xact: 'AppType' = 1980, 'panquest-xact', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
70737073

70747074
#: - [TCP] p2pQ
70757075
#: - [UDP] p2pQ

0 commit comments

Comments
 (0)