Skip to content

Commit

Permalink
looks like we need kqueue changes here
Browse files Browse the repository at this point in the history
  • Loading branch information
ProjectsByJackHe committed Feb 18, 2025
1 parent ffca523 commit 4652e63
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/platform/datapath_kqueue.c
Original file line number Diff line number Diff line change
Expand Up @@ -2156,13 +2156,17 @@ CxPlatResolveRoute(
_Inout_ CXPLAT_ROUTE* Route,
_In_ uint8_t PathId,
_In_ void* Context,
_In_ CXPLAT_ROUTE_RESOLUTION_CALLBACK_HANDLER Callback
_In_ CXPLAT_ROUTE_RESOLUTION_CALLBACK_HANDLER Callback,
_In_ uint8_t UseQTIP,
_In_ uint8_t OverrideGlobalQTIPSettings,
)
{
UNREFERENCED_PARAMETER(Socket);
UNREFERENCED_PARAMETER(PathId);
UNREFERENCED_PARAMETER(Context);
UNREFERENCED_PARAMETER(Callback);
UNREFERENCED_PARAMETER(UseQTIP);
UNREFERENCED_PARAMETER(OverrideGlobalQTIPSettings);
Route->State = RouteResolved;
return QUIC_STATUS_SUCCESS;
}
Expand Down

0 comments on commit 4652e63

Please sign in to comment.