Renamed http files

multi_plaform
anulax1225 ago%!(EXTRA string=1 year)
parent 1460cc2eea
commit eaf695c45d
  1. 2
      bakanet/src/bakanet.h
  2. 2
      bakanet/src/bakanet/http/packet.cpp
  3. 0
      bakanet/src/bakanet/http/packet.h
  4. 2
      bakanet/src/bakanet/http/server.cpp
  5. 2
      bakanet/src/bakanet/http/server.h

@ -12,4 +12,4 @@
#endif
#include <bakanet/core/dns_lookup.h>
#include <bakanet/http/http_server.h>
#include <bakanet/http/server.h>

@ -1,4 +1,4 @@
#include "http_packet.h"
#include "packet.h"
namespace Bk::Net {
HttpRequest::HttpRequest(std::string method,
std::string url,

@ -1,4 +1,4 @@
#include "http_server.h"
#include "server.h"
namespace Bk::Net {
HttpServer::HttpServer(IpAddress ip, int port)
{

@ -3,7 +3,7 @@
#include <bakanetpch.h>
#include <bakanet/core/ip_address.h>
#include <bakanet/core/socket.h>
#include "http_packet.h"
#include "packet.h"
namespace Bk::Net {
using RequestHandler = std::function<HttpReponse(HttpRequest& req)>;
Loading…
Cancel
Save