You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
32 lines
597 B
32 lines
597 B
#include <bakanet.h> |
|
|
|
#define PORT 8000 |
|
|
|
using namespace Bk::Net; |
|
|
|
int main() |
|
{ |
|
IpAddress ip; |
|
HttpServer server(ip, PORT); |
|
server.get("/", [](HttpRequest req) |
|
{ |
|
log("Path /") |
|
HttpReponse res(HTTP_RES_200, req.version); |
|
res.body = "<p>Hello World! " + req.url + "</p>"; |
|
return res; |
|
}); |
|
|
|
server.get("/home/", [](HttpRequest req) |
|
{ |
|
log("Path /home/") |
|
HttpReponse res(HTTP_RES_200, req.version); |
|
res.body = "<p>Hello World! " + req.url + "</p>"; |
|
return res; |
|
}); |
|
|
|
server.start(); |
|
return 0; |
|
} |
|
|
|
|
|
|
|
|