libuwebsockets-sys 0.0.1

Native bindings to the uWebSockets CAPI
Documentation
#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);
        }
    };
    
}