Skip to content

Commit 9f4cb23

Browse files
Bumped version to 1.3.1.post24
Updated vendor constant enumerations at Sat Sep 7 10:04:42 UTC 2024. The following files have been changed: pcapkit/const/ftp/return_code.py pcapkit/const/reg/apptype.py
1 parent 325503d commit 9f4cb23

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

pcapkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,4 @@
123123
]
124124

125125
#: version number
126-
__version__ = '1.3.1.post23'
126+
__version__ = '1.3.1.post24'

pcapkit/const/ftp/return_code.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ def __str__(self) -> 'str':
177177
#: Requested file action was okay, completed.
178178
CODE_250: 'ReturnCode' = 250, 'Requested file action was okay, completed.'
179179

180-
#: User name okay, password okay.
181-
CODE_331: 'ReturnCode' = 331, 'User name okay, password okay.'
180+
#: User name okay, password needed.
181+
CODE_331: 'ReturnCode' = 331, 'User name okay, password needed.'
182182

183183
#: No need account for login.
184184
CODE_332: 'ReturnCode' = 332, 'No need account for login.'

pcapkit/const/reg/apptype.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28160,10 +28160,10 @@ def __hash__(self) -> 'int':
2816028160
#: [TCP] DNS Dynamic Update Service over TLS [:rfc:`6281`]
2816128161
dns_update_tls: 'AppType' = -1, 'dns-update-tls', TransportProtocol.get('tcp')
2816228162

28163-
#: [TCP] DNS-SD Service Registration [RFC-ietf-dnssd-srp-25]
28163+
#: [TCP] DNS-Based Service Discovery [RFC-ietf-dnssd-srp-25]
2816428164
dnssd_srp: 'AppType' = -1, 'dnssd-srp', TransportProtocol.get('tcp')
2816528165

28166-
#: [TCP] DNS-SD Service Registration (TLS) [RFC-ietf-dnssd-srp-25]
28166+
#: [TCP] DNS-Based Service Discovery (TLS) [RFC-ietf-dnssd-srp-25]
2816728167
dnssd_srp_tls: 'AppType' = -1, 'dnssd-srp-tls', TransportProtocol.get('tcp')
2816828168

2816928169
#: [N/A] Roar (Death of Productivity)

0 commit comments

Comments
 (0)