From 2998180231754e495257ccf18f318f1de1f3987a Mon Sep 17 00:00:00 2001 From: "Penn, John M 047828115" Date: Mon, 19 Aug 2019 16:57:46 -0500 Subject: [PATCH] Fix renaming misses. --- .../models/mongoose_httpd/src/VariableServerSession.cpp | 2 +- trick_sims/Cannon/models/mongoose_httpd/src/http_server.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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");