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

Remove Trivial Switch Statement #254

Merged
merged 1 commit into from
Dec 31, 2024
Merged
Changes from all commits
Commits
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
6 changes: 1 addition & 5 deletions lib/msh3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1088,8 +1088,7 @@ MsH3pListener::MsQuicCallback(
_Inout_ QUIC_LISTENER_EVENT* Event
)
{
switch (Event->Type) {
case QUIC_LISTENER_EVENT_NEW_CONNECTION: {
if (Event->Type == QUIC_LISTENER_EVENT_NEW_CONNECTION) {
auto Connection = new(std::nothrow) MsH3pConnection(Event->NEW_CONNECTION.Connection);
if (!Connection) return QUIC_STATUS_OUT_OF_MEMORY;
MSH3_LISTENER_EVENT h3Event = {};
Expand All @@ -1098,9 +1097,6 @@ MsH3pListener::MsQuicCallback(
h3Event.NEW_CONNECTION.ServerName = Event->NEW_CONNECTION.Info->ServerName;
h3Event.NEW_CONNECTION.ServerNameLength = Event->NEW_CONNECTION.Info->ServerNameLength;
Callbacks((MSH3_LISTENER*)this, Context, &h3Event);
break;
}
default: break;
}
return QUIC_STATUS_SUCCESS;
}
Loading