diff --git a/trick_sims/Cannon/models/mongoose_httpd/src/VariableServerSession.cpp b/trick_sims/Cannon/models/mongoose_httpd/src/VariableServerSession.cpp index 212acc00..69b07daf 100644 --- a/trick_sims/Cannon/models/mongoose_httpd/src/VariableServerSession.cpp +++ b/trick_sims/Cannon/models/mongoose_httpd/src/VariableServerSession.cpp @@ -7,7 +7,7 @@ LIBRARY DEPENDENCIES: #include // for setprecision #include "trick/memorymanager_c_intf.h" #include "trick/exec_proto.h" -#include "../include/WSSession.hh" +#include "../include/VariableServerSession.hh" #include "../include/simpleJSON.hh" VariableServerSession::VariableServerSession( struct mg_connection *nc ) : WebSocketSession(nc) { diff --git a/trick_sims/Cannon/models/mongoose_httpd/src/http_server.cpp b/trick_sims/Cannon/models/mongoose_httpd/src/http_server.cpp index 1c15788d..516a666f 100644 --- a/trick_sims/Cannon/models/mongoose_httpd/src/http_server.cpp +++ b/trick_sims/Cannon/models/mongoose_httpd/src/http_server.cpp @@ -2,7 +2,7 @@ PURPOSE: (Represent the state and initial conditions of an http server) LIBRARY DEPENDENCIES: ( - (WSSession.o) + (VariableServerSession.o) (WSSessionVariable.o) (http_GET_handlers.o) ) @@ -35,7 +35,7 @@ Messages sent from Server to Client */ #include "../include/http_server.hh" -#include "../include/WSSession.hh" +#include "../include/VariableServerSession.hh" #include "../include/http_GET_handlers.hh" static const struct mg_str s_get_method = MG_MK_STR("GET");