Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Just create a quic listener #718

Merged
merged 19 commits into from
Oct 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
86512c3
* NEW [quic] Add defination of quic listener.
wanghaEMQ Oct 24, 2023
36f7647
* NEW [quic] Update the quic listener defination and Add implementati…
wanghaEMQ Oct 25, 2023
648bfc7
* NEW [quic] Add implementation of quic_listener_alloc_addr.
wanghaEMQ Oct 25, 2023
09c1fff
* NEW [quic] Add defination of quic listener.
wanghaEMQ Oct 26, 2023
294d393
* FIX [quic] Remove unused field in nni_quic_conn.
wanghaEMQ Oct 26, 2023
0b1f034
* NEW [quic] Add msquic_listen & Add implementation of nni_quic_liste…
wanghaEMQ Oct 26, 2023
ce9daac
* ADD [quic] Add implementation of +nni_quic_listener_listen.
wanghaEMQ Oct 26, 2023
553a4a1
* NEW [quic] Add msquic_listener_cb to handle incoming connection.
wanghaEMQ Oct 26, 2023
793cf4b
* NEW [quic] Add msquic_connection_cb for quic listener
wanghaEMQ Oct 26, 2023
a25dc17
* NEW [quic] Add nni_quic_listener_accept & Support doaccept from bot…
wanghaEMQ Oct 26, 2023
6ddf80d
* ADD [quic] Expose interface nni_quic_listener_accept.
wanghaEMQ Oct 26, 2023
4c90a6d
* NEW [quic] Add imcomings for listener to cache the connection not a…
wanghaEMQ Oct 26, 2023
0a07cbb
* NEW [quic] Add implementation of quic_listener_free and quic_listen…
wanghaEMQ Oct 27, 2023
b407424
* NEW [quic] Add implementation of nni_quic_listener_close.
wanghaEMQ Oct 27, 2023
5f899a1
* NEW [quic] Add method to close msquic listener.
wanghaEMQ Oct 27, 2023
e19cbb3
* NEW [quic] Rename the name of the function to close and stop listener.
wanghaEMQ Oct 27, 2023
b8ddd7d
* NEW [quic] Add quic_listener_doclose to stop the msquic listener.
wanghaEMQ Oct 30, 2023
2645aaa
* Fix [quic] Fix stop listener rather than finite the msquic listener…
wanghaEMQ Oct 30, 2023
6256518
* NEW [quic] Add nni_quic_listener_fini to finite quic listener.
wanghaEMQ Oct 30, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions src/supplemental/quic/msquic_dial.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,6 @@ struct nni_quic_conn {

// MsQuic
HQUIC qstrm; // quic stream
// A buffer for cache msg from msquic
uint32_t rrcap;
uint32_t rrlen;
uint32_t rrpos;
char * rrbuf;
uint8_t reason_code;

nni_reap_node reap;
Expand Down
Loading
Loading