Skip to content

Commit

Permalink
refactor(server): Unified naming scheme for ua_discovery* files
Browse files Browse the repository at this point in the history
  • Loading branch information
jpfr committed Oct 25, 2023
1 parent b1955be commit d47676e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@ if(UA_ENABLE_DISCOVERY_MULTICAST)
${PROJECT_SOURCE_DIR}/deps/mdnsd/libmdnsd/sdtxt.h
${PROJECT_SOURCE_DIR}/deps/mdnsd/libmdnsd/mdnsd.h)
list(APPEND lib_sources
${PROJECT_SOURCE_DIR}/src/server/ua_server_discovery_mdns.c
${PROJECT_SOURCE_DIR}/src/server/ua_discovery_mdns.c
${PROJECT_SOURCE_DIR}/deps/mdnsd/libmdnsd/1035.c
${PROJECT_SOURCE_DIR}/deps/mdnsd/libmdnsd/xht.c
${PROJECT_SOURCE_DIR}/deps/mdnsd/libmdnsd/sdtxt.c
Expand Down Expand Up @@ -1071,8 +1071,8 @@ list(INSERT plugin_sources 0
endif()

if(UA_ENABLE_DISCOVERY)
list(APPEND lib_headers ${PROJECT_SOURCE_DIR}/src/server/ua_discovery_manager.h)
list(APPEND lib_sources ${PROJECT_SOURCE_DIR}/src/server/ua_discovery_manager.c)
list(APPEND lib_headers ${PROJECT_SOURCE_DIR}/src/server/ua_discovery.h)
list(APPEND lib_sources ${PROJECT_SOURCE_DIR}/src/server/ua_discovery.c)
endif()

if(UA_ENABLE_NODESETLOADER)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/

#include <open62541/client.h>
#include "ua_discovery_manager.h"
#include "ua_discovery.h"
#include "ua_server_internal.h"

#ifdef UA_ENABLE_DISCOVERY
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Copyright 2017 (c) Thomas Stalder, Blue Time Concept SA
*/

#include "ua_discovery_manager.h"
#include "ua_discovery.h"
#include "ua_server_internal.h"

#ifdef UA_ENABLE_DISCOVERY_MULTICAST
Expand Down
2 changes: 1 addition & 1 deletion src/server/ua_services_discovery.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/

#include "ua_server_internal.h"
#include "ua_discovery_manager.h"
#include "ua_discovery.h"
#include "ua_services.h"

#ifdef UA_ENABLE_DISCOVERY
Expand Down

0 comments on commit d47676e

Please sign in to comment.