2019-04-24 18:29:50 -05:00
|
|
|
/************************TRICK HEADER*************************
|
|
|
|
PURPOSE:
|
|
|
|
(HTTP Server)
|
|
|
|
LIBRARY DEPENDENCIES:
|
|
|
|
((src/http_server.cpp))
|
|
|
|
*************************************************************/
|
|
|
|
##include "mongoose_httpd/include/http_server.h"
|
|
|
|
|
|
|
|
class HttpSimObject : public Trick::SimObject {
|
|
|
|
|
|
|
|
public:
|
|
|
|
HTTP_Server http_server ;
|
|
|
|
|
|
|
|
HttpSimObject() {
|
|
|
|
("default_data") http_default_data( &http_server ) ;
|
|
|
|
("initialization") http_init( &http_server ) ;
|
2019-08-13 16:27:03 -05:00
|
|
|
("top_of_frame") http_top_of_frame( &http_server ) ;
|
2019-04-24 18:29:50 -05:00
|
|
|
("shutdown") http_shutdown( &http_server ) ;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
HttpSimObject http ;
|