Skip to content

Commit

Permalink
hpp-ify sessiond header files
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub <noreply@github.com>
  • Loading branch information
themarwhal committed Apr 19, 2022
1 parent e1f12d6 commit 0200932
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion lte/gateway/c/session_manager/AAAClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* limitations under the License.
*/

#include "lte/gateway/c/session_manager/AAAClient.h"
#include "lte/gateway/c/session_manager/AAAClient.hpp"

#include <glog/logging.h>
#include <grpcpp/channel.h>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion lte/gateway/c/session_manager/AmfServiceClient.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "lte/gateway/c/session_manager/AmfServiceClient.h"
#include "lte/gateway/c/session_manager/AmfServiceClient.hpp"

#include <glog/logging.h>
#include <grpcpp/channel.h>
Expand Down
4 changes: 2 additions & 2 deletions lte/gateway/c/session_manager/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ cc_library(
cc_library(
name = "aaa_client",
srcs = ["AAAClient.cpp"],
hdrs = ["AAAClient.h"],
hdrs = ["AAAClient.hpp"],
# TODO(@themarwhal): Migrate to using full path for includes - GH8494
strip_include_prefix = "/lte/gateway/c/session_manager",
deps = [
Expand Down Expand Up @@ -322,7 +322,7 @@ cc_library(
cc_library(
name = "amf_service_client",
srcs = ["AmfServiceClient.cpp"],
hdrs = ["AmfServiceClient.h"],
hdrs = ["AmfServiceClient.hpp"],
# TODO(@themarwhal): Migrate to using full path for includes - GH8494
strip_include_prefix = "/lte/gateway/c/session_manager",
deps = [
Expand Down
4 changes: 2 additions & 2 deletions lte/gateway/c/session_manager/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ link_directories(

add_library(SESSION_MANAGER
AAAClient.cpp
AAAClient.h
AAAClient.hpp
ChargingGrant.cpp
ChargingGrant.h
EnumToString.cpp
Expand Down Expand Up @@ -180,7 +180,7 @@ add_library(SESSION_MANAGER
UpfMsgManageHandler.cpp
SessionStateEnforcer.h
SessionStateEnforcer.cpp
AmfServiceClient.h
AmfServiceClient.hpp
AmfServiceClient.cpp
Utilities.cpp
Utilities.h
Expand Down
2 changes: 1 addition & 1 deletion lte/gateway/c/session_manager/LocalEnforcer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include <utility>
#include <vector>

#include "lte/gateway/c/session_manager/AAAClient.h"
#include "lte/gateway/c/session_manager/AAAClient.hpp"
#include "lte/gateway/c/session_manager/DiameterCodes.h"
#include "lte/gateway/c/session_manager/EnumToString.h"
#include "lte/gateway/c/session_manager/GrpcMagmaUtils.h"
Expand Down
2 changes: 1 addition & 1 deletion lte/gateway/c/session_manager/LocalEnforcer.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include <utility>
#include <vector>

#include "AAAClient.h"
#include "AAAClient.hpp"
#include "CreditKey.h"
#include "DirectorydClient.h"
#include "PipelinedClient.h"
Expand Down
2 changes: 1 addition & 1 deletion lte/gateway/c/session_manager/RestartHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include <utility>
#include <vector>

#include "lte/gateway/c/session_manager/AAAClient.h"
#include "lte/gateway/c/session_manager/AAAClient.hpp"
#include "lte/gateway/c/session_manager/DirectorydClient.h"
#include "lte/gateway/c/session_manager/SessionReporter.h"
#include "lte/gateway/c/session_manager/SessionStore.h"
Expand Down
2 changes: 1 addition & 1 deletion lte/gateway/c/session_manager/RestartHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include <string>
#include <unordered_map>

#include "AAAClient.h"
#include "AAAClient.hpp"
#include "DirectorydClient.h"
#include "LocalEnforcer.h"
#include "SessionReporter.h"
Expand Down
2 changes: 1 addition & 1 deletion lte/gateway/c/session_manager/SessionStateEnforcer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#include <utility>
#include <vector>

#include "lte/gateway/c/session_manager/AmfServiceClient.h"
#include "lte/gateway/c/session_manager/AmfServiceClient.hpp"
#include "lte/gateway/c/session_manager/EnumToString.h"
#include "lte/gateway/c/session_manager/PipelinedClient.h"
#include "lte/gateway/c/session_manager/SessionState.h"
Expand Down
2 changes: 1 addition & 1 deletion lte/gateway/c/session_manager/SessionStateEnforcer.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ limitations under the License.
#include <unordered_set>
#include <vector>

#include "AmfServiceClient.h"
#include "AmfServiceClient.hpp"
#include "PipelinedClient.h"
#include "RuleStore.h"
#include "SessionState.h"
Expand Down
4 changes: 2 additions & 2 deletions lte/gateway/c/session_manager/sessiond_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
#include <utility>
#include <vector>

#include "lte/gateway/c/session_manager/AAAClient.h"
#include "lte/gateway/c/session_manager/AmfServiceClient.h"
#include "lte/gateway/c/session_manager/AAAClient.hpp"
#include "lte/gateway/c/session_manager/AmfServiceClient.hpp"
#include "lte/gateway/c/session_manager/DirectorydClient.h"
#include "lte/gateway/c/session_manager/GrpcMagmaUtils.h"
#include "lte/gateway/c/session_manager/LocalEnforcer.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include "lte/gateway/c/session_manager/StoredState.h"
#include "orc8r/gateway/c/common/logging/magma_logging.h"
#include "lte/gateway/c/session_manager/PipelinedClient.h"
#include "lte/gateway/c/session_manager/AmfServiceClient.h"
#include "lte/gateway/c/session_manager/AmfServiceClient.hpp"
#include "lte/gateway/c/session_manager/DirectorydClient.h"
#include "lte/gateway/c/session_manager/test/Consts.h"
#include "lte/gateway/c/session_manager/EnumToString.h"
Expand Down
2 changes: 1 addition & 1 deletion lte/gateway/c/session_manager/test/test_upf_node_state.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include "lte/gateway/c/session_manager/StoredState.h"
#include "orc8r/gateway/c/common/logging/magma_logging.h"
#include "lte/gateway/c/session_manager/PipelinedClient.h"
#include "lte/gateway/c/session_manager/AmfServiceClient.h"
#include "lte/gateway/c/session_manager/AmfServiceClient.hpp"

#define SESSIOND_SERVICE "sessiond"
#define SESSIOND_VERSION "1.0"
Expand Down

0 comments on commit 0200932

Please sign in to comment.