mongoose/examples/device-dashboard/net.h
2023-05-28 17:06:47 +01:00

18 lines
312 B
C

// Copyright (c) 2023 Cesanta Software Limited
// All rights reserved
#pragma once
#include "mongoose.h"
#if !defined(HTTP_URL)
#define HTTP_URL "http://0.0.0.0:8000"
#endif
#if !defined(HTTPS_URL)
#define HTTPS_URL "http://0.0.0.0:8443"
#endif
#define MAX_DEVICE_NAME 40
void web_init(struct mg_mgr *mgr);