mirror of
https://github.com/nasa/trick.git
synced 2025-01-28 15:14:36 +00:00
15 lines
553 B
C++
15 lines
553 B
C++
/*************************************************************************
|
|
PURPOSE: (Represent Websocket variable server connection.)
|
|
LIBRARY DEPENDENCIES:
|
|
( (../src/http_GET_handlers.o))
|
|
**************************************************************************/
|
|
#ifndef HANDLE_HTTP_GET_HANDLERS_HH
|
|
#define HANDLE_HTTP_GET_HANDLERS_HH
|
|
|
|
#include "civet/CivetServer.h"
|
|
|
|
void handle_HTTP_GET_vs_connections(struct mg_connection *nc, struct http_message *hm);
|
|
void handle_HTTP_GET_alloc_info(struct mg_connection *nc, struct http_message *hm);
|
|
|
|
#endif
|