Fix signedness of server name check (#697)

This commit is contained in:
J. Nick Koston 2023-11-24 12:35:58 -06:00 committed by GitHub
parent 9905efd8d5
commit 065c8e715d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ cdef class APINoiseFrameHelper(APIFrameHelper):
@cython.locals(
chosen_proto=char,
server_name_i="unsigned int"
server_name_i=int
)
cdef _handle_hello(self, bytes server_hello)