Skip to content

Commit 50eb2bf

Browse files
Bumped version to 1.3.5.post21
Updated vendor constant enumerations at Sat Jun 21 10:05:52 UTC 2025. The following files have been changed: pcapkit/const/reg/apptype.py
1 parent 5a32a6c commit 50eb2bf

3 files changed

Lines changed: 14 additions & 5 deletions

File tree

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.post20'
124+
__version__ = '1.3.5.post21'

pcapkit/const/reg/apptype.py

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17535,6 +17535,12 @@ def __hash__(self) -> 'int':
1753517535
#: - [UDP] IP Routable Unified Bus
1753617536
unified_bus: 'AppType' = 4792, 'unified-bus', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
1753717537

17538+
#: [TCP] Reserved
17539+
reserved_4793: 'AppType' = 4793, 'reserved', TransportProtocol.get('tcp')
17540+
17541+
#: [UDP] Ultra Ethernet Transport
17542+
uet: 'AppType' = 4793, 'uet', TransportProtocol.get('udp')
17543+
1753817544
#: - [TCP] Icona Instant Messenging System
1753917545
#: - [UDP] Icona Instant Messenging System
1754017546
iims: 'AppType' = 4800, 'iims', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
@@ -28208,10 +28214,10 @@ def __hash__(self) -> 'int':
2820828214
#: [TCP] DNS Dynamic Update Service over TLS [:rfc:`6281`]
2820928215
dns_update_tls: 'AppType' = -1, 'dns-update-tls', TransportProtocol.get('tcp')
2821028216

28211-
#: [TCP] DNS-Based Service Discovery [RFC-ietf-dnssd-srp-25]
28217+
#: [TCP] DNS-Based Service Discovery [:rfc:`9665`]
2821228218
dnssd_srp: 'AppType' = -1, 'dnssd-srp', TransportProtocol.get('tcp')
2821328219

28214-
#: [TCP] DNS-Based Service Discovery (TLS) [RFC-ietf-dnssd-srp-25]
28220+
#: [TCP] DNS-Based Service Discovery (TLS) [:rfc:`9665`]
2821528221
dnssd_srp_tls: 'AppType' = -1, 'dnssd-srp-tls', TransportProtocol.get('tcp')
2821628222

2821728223
#: [N/A] Roar (Death of Productivity)
@@ -28472,6 +28478,9 @@ def __hash__(self) -> 'int':
2847228478
#: [TCP] Groovesquid Democratic Music Control Protocol
2847328479
groovesquid: 'AppType' = -1, 'groovesquid', TransportProtocol.get('tcp')
2847428480

28481+
#: [TCP] Mobile device cluster
28482+
groupthink: 'AppType' = -1, 'groupthink', TransportProtocol.get('tcp')
28483+
2847528484
#: [N/A] Growl
2847628485
growl: 'AppType' = -1, 'growl', TransportProtocol.get('undefined')
2847728486

@@ -30636,7 +30645,7 @@ def _missing_(cls, value: 'int') -> 'AppType':
3063630645
if 4775 <= value <= 4783:
3063730646
#: [N/A] Unassigned
3063830647
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
30639-
if 4793 <= value <= 4799:
30648+
if 4794 <= value <= 4799:
3064030649
#: [N/A] Unassigned
3064130650
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
3064230651
if 4805 <= value <= 4826:

0 commit comments

Comments
 (0)