Skip to content
This repository was archived by the owner on Oct 3, 2021. It is now read-only.

Commit 3598a95

Browse files
committed
ping filenames updated
1 parent 0c0dfc6 commit 3598a95

11 files changed

+16
-26
lines changed

ping/CMakeLists.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,24 @@ endif()
99
include_directories(${RT_INCLUDES} ${GLIB_INCLUDES})
1010

1111
set(ping_sources
12-
shd-ping-service.c
13-
shd-ping.c
14-
shd-ping-server.c
15-
shd-ping-client.c
12+
ping-service.c
13+
ping.c
14+
ping-server.c
15+
ping-client.c
1616
)
1717

1818
## service target to allow ping service to be used by any plugin
1919
add_library(shadow-service-ping STATIC ${ping_sources})
2020
target_link_libraries(shadow-service-ping ${RT_LIBRARIES} ${GLIB_LIBRARIES})
2121

2222
## executable that can run outside of shadow
23-
add_executable(shadow-ping shd-ping-main.c ${ping_sources})
23+
add_executable(shadow-ping ping-main.c ${ping_sources})
2424
target_link_libraries(shadow-ping ${RT_LIBRARIES} ${GLIB_LIBRARIES})
2525
install(TARGETS shadow-ping DESTINATION bin)
2626

2727
## build bitcode - other plugins may use the service bitcode target
2828
add_bitcode(shadow-service-ping-bitcode ${ping_sources})
29-
add_bitcode(shadow-plugin-ping-bitcode shd-ping-plugin.c)
29+
add_bitcode(shadow-plugin-ping-bitcode ping-plugin.c)
3030

3131
## create and install a shared library that can plug into shadow
3232
add_plugin(shadow-plugin-ping shadow-plugin-ping-bitcode shadow-service-ping-bitcode)

ping/shd-ping-client.c ping/ping-client.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*
22
* The Shadow Simulator
3-
* Copyright (c) 2010-2011, Rob Jansen
43
* See LICENSE for licensing information
54
*/
65

@@ -18,7 +17,7 @@
1817

1918
#include <string.h>
2019

21-
#include "shd-ping-client.h"
20+
#include "ping-client.h"
2221

2322
#define PING_CLIENT_ASSERTIO(ping, retcode, allowed_errno_logic, ts_errcode) \
2423
/* check result */ \

ping/shd-ping-client.h ping/ping-client.h

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*
22
* The Shadow Simulator
3-
* Copyright (c) 2010-2011, Rob Jansen
43
* See LICENSE for licensing information
54
*/
65

ping/shd-ping-main.c ping/ping-main.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
/*
22
* The Shadow Simulator
3-
* Copyright (c) 2010-2011, Rob Jansen
43
* See LICENSE for licensing information
54
*/
65

76
#include <glib.h>
87
#include <netinet/in.h>
98
#include <sys/epoll.h>
109

11-
#include "shd-ping.h"
10+
#include "ping.h"
1211

1312
Ping pingData;
1413

ping/shd-ping-plugin.c ping/ping-plugin.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
/*
22
* The Shadow Simulator
3-
* Copyright (c) 2010-2011, Rob Jansen
43
* See LICENSE for licensing information
54
*/
65

7-
#include "shd-ping.h"
6+
#include "ping.h"
87

98

109
void pingPlugin_new(int argc, char* argv[]) {

ping/shd-ping-server.c ping/ping-server.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*
22
* The Shadow Simulator
3-
* Copyright (c) 2010-2011, Rob Jansen
43
* See LICENSE for licensing information
54
*/
65

@@ -18,7 +17,7 @@
1817

1918
#include <string.h>
2019

21-
#include "shd-ping-server.h"
20+
#include "ping-server.h"
2221

2322
#define TIME_TO_NS(ts) ((ts.tv_sec * 1000000000) + ts.tv_nsec)
2423

ping/shd-ping-server.h ping/ping-server.h

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*
22
* The Shadow Simulator
3-
* Copyright (c) 2010-2011, Rob Jansen
43
* See LICENSE for licensing information
54
*/
65

ping/shd-ping-service.c ping/ping-service.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*
22
* The Shadow Simulator
3-
* Copyright (c) 2010-2011, Rob Jansen
43
* See LICENSE for licensing information
54
*/
65

@@ -14,7 +13,7 @@
1413
#include <assert.h>
1514
#include <arpa/inet.h>
1615

17-
#include "shd-ping-service.h"
16+
#include "ping-service.h"
1817

1918
static void pingService_log(PingService *pingSvc, enum pingService_loglevel level, const gchar* format, ...) {
2019
/* if they gave NULL as a callback, dont log */

ping/shd-ping-service.h ping/ping-service.h

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*
22
* The Shadow Simulator
3-
* Copyright (c) 2010-2011, Rob Jansen
43
* See LICENSE for licensing information
54
*/
65

@@ -11,8 +10,8 @@
1110
#include <stddef.h>
1211
#include <time.h>
1312

14-
#include "shd-ping-client.h"
15-
#include "shd-ping-server.h"
13+
#include "ping-client.h"
14+
#include "ping-server.h"
1615

1716
enum pingService_loglevel {
1817
PING_CRITICAL, PING_WARNING, PING_NOTICE, PING_INFO, PING_DEBUG

ping/shd-ping.c ping/ping.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*
22
* The Shadow Simulator
3-
* Copyright (c) 2010-2011, Rob Jansen
43
* See LICENSE for licensing information
54
*/
65

@@ -18,7 +17,7 @@
1817

1918
#include <string.h>
2019

21-
#include "shd-ping.h"
20+
#include "ping.h"
2221

2322
Ping* ping;
2423

ping/shd-ping.h ping/ping.h

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*
22
* The Shadow Simulator
3-
* Copyright (c) 2010-2011, Rob Jansen
43
* See LICENSE for licensing information
54
*/
65

@@ -24,8 +23,8 @@
2423
#include <unistd.h>
2524
#include <event.h>
2625

27-
#include "shd-ping-server.h"
28-
#include "shd-ping-client.h"
26+
#include "ping-server.h"
27+
#include "ping-client.h"
2928

3029
#define MAX_EVENTS 10
3130
#define PING_PORT 25

0 commit comments

Comments
 (0)