mirror of
https://github.com/oven-sh/bun
synced 2026-02-17 22:32:06 +00:00
* Move uWebSockets and uSockets forks into Bun's repository * Update Makefile * Update settings.json * Update libuwsockets.cpp * Remove backends we won't be using * Update bindings.cpp --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
21 lines
378 B
C++
21 lines
378 B
C++
#include "HttpRouter.h"
|
|
|
|
struct Http3Response;
|
|
struct Http3Request;
|
|
|
|
namespace uWS {
|
|
|
|
struct Http3ContextData {
|
|
struct RouterData {
|
|
Http3Response *res;
|
|
Http3Request *req;
|
|
};
|
|
|
|
HttpRouter<RouterData> router;
|
|
|
|
Http3ContextData() {
|
|
//printf("Constructing http3contextdata: %p\n", this);
|
|
}
|
|
};
|
|
|
|
} |