Skip to content

Commit b5d33c0

Browse files
Bumped version to 1.3.5.post30
Updated vendor constant enumerations at Sat Oct 4 10:05:07 UTC 2025. The following files have been changed: pcapkit/const/reg/apptype.py
1 parent 88ee804 commit b5d33c0

File tree

3 files changed

+22
-11
lines changed

3 files changed

+22
-11
lines changed

conda/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1
1+
0

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.post29'
124+
__version__ = '1.3.5.post30'

pcapkit/const/reg/apptype.py

Lines changed: 20 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2954,17 +2954,17 @@ def __hash__(self) -> 'int':
29542954
#: - [UDP] NETCONF over SSH [:rfc:`6242`]
29552955
netconf_ssh: 'AppType' = 830, 'netconf-ssh', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
29562956

2957-
#: - [TCP] NETCONF over BEEP [:rfc:`4744`]
2958-
#: - [UDP] NETCONF over BEEP [:rfc:`4744`]
2959-
netconf_beep: 'AppType' = 831, 'netconf-beep', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
2957+
#: - [TCP] Reserved
2958+
#: - [UDP] Reserved
2959+
reserved_831: 'AppType' = 831, 'reserved', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
29602960

2961-
#: - [TCP] NETCONF for SOAP over HTTPS [:rfc:`4743`]
2962-
#: - [UDP] NETCONF for SOAP over HTTPS [:rfc:`4743`]
2963-
netconfsoaphttp: 'AppType' = 832, 'netconfsoaphttp', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
2961+
#: - [TCP] Reserved
2962+
#: - [UDP] Reserved
2963+
reserved_832: 'AppType' = 832, 'reserved', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
29642964

2965-
#: - [TCP] NETCONF for SOAP over BEEP [:rfc:`4743`]
2966-
#: - [UDP] NETCONF for SOAP over BEEP [:rfc:`4743`]
2967-
netconfsoapbeep: 'AppType' = 833, 'netconfsoapbeep', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
2965+
#: - [TCP] Reserved
2966+
#: - [UDP] Reserved
2967+
reserved_833: 'AppType' = 833, 'reserved', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
29682968

29692969
#: - [TCP] dhcp-failover 2
29702970
#: - [UDP] dhcp-failover 2
@@ -27488,6 +27488,17 @@ def __hash__(self) -> 'int':
2748827488
#: [N/A] Remote Job Service
2748927489
netrjs: 'AppType' = -1, 'netrjs', TransportProtocol.get('undefined')
2749027490

27491+
#: [N/A] NETCONF over BEEP [:rfc:`4744`][RFC-ietf-netconf-port-numbers-07]
27492+
netconf_beep: 'AppType' = -1, 'netconf-beep', TransportProtocol.get('undefined')
27493+
27494+
#: [N/A] NETCONF for SOAP over BEEP [:rfc:`4743`][RFC-ietf-netconf-port-
27495+
#: numbers-07]
27496+
netconfsoapbeep: 'AppType' = -1, 'netconfsoapbeep', TransportProtocol.get('undefined')
27497+
27498+
#: [N/A] NETCONF for SOAP over HTTPS [:rfc:`4743`][RFC-ietf-netconf-port-
27499+
#: numbers-07]
27500+
netconfsoaphttp: 'AppType' = -1, 'netconfsoaphttp', TransportProtocol.get('undefined')
27501+
2749127502
#: [N/A] A File Access Protocol
2749227503
nfile: 'AppType' = -1, 'nfile', TransportProtocol.get('undefined')
2749327504

0 commit comments

Comments
 (0)