mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2026-02-12 16:10:57 +00:00
DEBUG: client certificate at server
This commit is contained in:
@ -222,9 +222,6 @@ class QUICTransport(ITransport):
|
||||
config.private_key = tls_config.private_key
|
||||
config.certificate_chain = tls_config.certificate_chain
|
||||
config.alpn_protocols = tls_config.alpn_protocols
|
||||
|
||||
config.verify_mode = tls_config.verify_mode
|
||||
|
||||
config.verify_mode = ssl.CERT_NONE
|
||||
|
||||
print("Successfully applied TLS configuration to QUIC config")
|
||||
@ -297,9 +294,6 @@ class QUICTransport(ITransport):
|
||||
|
||||
await connection.connect(self._background_nursery)
|
||||
|
||||
print("Starting to verify peer identity")
|
||||
|
||||
print("Identity verification done")
|
||||
# Store connection for management
|
||||
conn_id = f"{host}:{port}"
|
||||
self._connections[conn_id] = connection
|
||||
|
||||
Reference in New Issue
Block a user