nx_quic_frame.nx
buildroot/runtime/nx_quic_frame.nx
about
nx_quic_frame.nx -- RUNG 4 of the sovereign QUIC transport: core frames (RFC 9000 sec 19) that the
handshake + control path need -- CRYPTO (carries TLS), ACK (loss/recovery), PADDING, PING,
CONNECTION_CLOSE. With R1's DATAGRAM (0x30/0x31) this completes the QUIC WIRE FORMAT layer.
All frames are varint-framed (R1). No float. license_tier: ORIGINAL
dependencies 1 imports · 1 importers
imports: nx_quic_wire.nx
imported by: nx_quic_frame_test.nx
structs
| none |
consts
| none |
functions
| 8 | func quic_crypto_encode(out: *u8, offset: i64, data: *u8, dlen: i64) -> i64 |
| 17 | func quic_crypto_parse(buf: *u8, n: i64, info: *i64) -> i64 |
| 31 | func quic_ack_encode(out: *u8, largest: i64, delay: i64, first_range: i64) -> i64 |
| 41 | func quic_ack_parse(buf: *u8, n: i64, info: *i64) -> i64 |
| 53 | func quic_padding_byte() -> i64 { return 0x00 } called by 1: main |
| 54 | func quic_ping_byte() -> i64 { return 0x01 } called by 1: main |
| 57 | func quic_conn_close_encode(out: *u8, errcode: i64, frametype: i64, reason: *u8, rlen: i64) -> i64 |
| 67 | func quic_conn_close_parse(buf: *u8, n: i64, info: *i64) -> i64 |
| 80 | func main() -> i64 { return 0 } |