Files
bun.sh/packages/bun-uws/src/Http3ContextData.h
Jarred Sumner a2ddfe6913 Bring uSockets & uWebSockets forks into Bun's repository (#4372)
* 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>
2023-08-28 08:38:30 -07:00

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);
}
};
}