chore: cleanup and doc gen fixes

This commit is contained in:
Akash Mondal
2025-07-14 03:32:44 +00:00
committed by lla-dane
parent a6ff93122b
commit 84c9ddc2dd
4 changed files with 10 additions and 42 deletions

View File

@ -1,8 +1,5 @@
"""
QUIC Transport implementation for py-libp2p with integrated security.
Uses aioquic's sans-IO core with trio for native async support.
Based on aioquic library with interface consistency to go-libp2p and js-libp2p.
Updated to include Module 5 security integration.
QUIC Transport implementation
"""
import copy
@ -79,13 +76,7 @@ logger = logging.getLogger(__name__)
class QUICTransport(ITransport):
"""
QUIC Transport implementation following libp2p transport interface.
Uses aioquic's sans-IO core with trio for native async support.
Supports both QUIC v1 (RFC 9000) and draft-29 for compatibility with
go-libp2p and js-libp2p implementations.
Includes integrated libp2p TLS security with peer identity verification.
QUIC Stream implementation following libp2p IMuxedStream interface.
"""
def __init__(