Replies: 2 comments
-
//
// Uses the QUIC (client) handle to start a connection attempt to the
// remote server. Can be passed either a connection or stream handle.
//
typedef
_IRQL_requires_max_(DISPATCH_LEVEL)
QUIC_STATUS
(QUIC_API * QUIC_CONNECTION_START_FN)(
_In_ _Pre_defensive_ HQUIC Connection,
_In_ _Pre_defensive_ HQUIC Configuration,
_In_ QUIC_ADDRESS_FAMILY Family,
_In_reads_or_z_opt_(QUIC_MAX_SNI_LENGTH)
const char* ServerName,
_In_ uint16_t ServerPort // Host byte order
); When you call If you're talking about the local port, you can |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thank you very much, I mean the local port , I will try QUIC_PARAM_CONN_LOCAL_ADDRESS |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is quic client can select a specific send port to connect with quic server and send data?
How to do it ? Thanks
Beta Was this translation helpful? Give feedback.
All reactions