Skip to Content.
Sympa Menu

ndt-dev - [ndt-dev] [ndt] r791 committed - Conforming to google style

Subject: NDT-DEV email list created

List archive

[ndt-dev] [ndt] r791 committed - Conforming to google style


Chronological Thread 
  • From:
  • To:
  • Subject: [ndt-dev] [ndt] r791 committed - Conforming to google style
  • Date: Thu, 15 Nov 2012 21:37:44 +0000

Revision: 791
Author:

Date: Thu Nov 15 13:34:19 2012
Log: Conforming to google style
http://code.google.com/p/ndt/source/detail?r=791

Modified:
/trunk/src/analyze.c
/trunk/src/fakewww.c
/trunk/src/genplot.c
/trunk/src/heuristics.c
/trunk/src/logging.c
/trunk/src/logging.h
/trunk/src/mrange.c
/trunk/src/ndt_odbc.c
/trunk/src/ndtptestconstants.c
/trunk/src/network.c
/trunk/src/protocol.c
/trunk/src/protocol.h
/trunk/src/runningtest.c
/trunk/src/test_c2s_clt.c
/trunk/src/test_c2s_srv.c
/trunk/src/test_meta_clt.c
/trunk/src/test_meta_srv.c
/trunk/src/test_mid_clt.c
/trunk/src/test_mid_srv.c
/trunk/src/test_results_clt.c
/trunk/src/test_s2c_clt.c
/trunk/src/test_s2c_srv.c
/trunk/src/test_sfw_clt.c
/trunk/src/test_sfw_srv.c
/trunk/src/testoptions.c
/trunk/src/testoptions.h
/trunk/src/tests_srv.h
/trunk/src/tr-mkmap.c
/trunk/src/tr-tree.c
/trunk/src/tr-tree6.c
/trunk/src/troute.c
/trunk/src/troute6.c
/trunk/src/utils.c
/trunk/src/viewtrace.c
/trunk/src/web100-admin.c
/trunk/src/web100-pcap.c
/trunk/src/web100-util.c
/trunk/src/web100clt.c
/trunk/src/web100srv.c

=======================================
--- /trunk/src/analyze.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/analyze.c Thu Nov 15 13:34:19 2012
@@ -30,8 +30,8 @@
#include <sys/select.h>
#include <math.h>

-#include "./usage.h"
-#include "./logging.h"
+#include "usage.h"
+#include "logging.h"

#define LOGFILE "web100srv.log"
#define PROTOLOGFILE "web100srvprotocol.log" /* protocol validation log */
=======================================
--- /trunk/src/fakewww.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/fakewww.c Thu Nov 15 13:34:19 2012
@@ -28,12 +28,12 @@
#define SYSLOG_NAMES
#include <syslog.h>

-#include "./usage.h"
-#include "./troute.h"
-#include "./tr-tree.h"
-#include "./network.h"
-#include "./logging.h"
-#include "./web100-admin.h"
+#include "usage.h"
+#include "troute.h"
+#include "tr-tree.h"
+#include "network.h"
+#include "logging.h"
+#include "web100-admin.h"

#define LISTEN_PORT "7123"
#define AC_TIME_FORMAT "%d/%b/%Y:%H:%M:%S %z"
=======================================
--- /trunk/src/genplot.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/genplot.c Thu Nov 15 13:34:19 2012
@@ -32,7 +32,7 @@
#include <web100.h>
#endif

-#include "./usage.h"
+#include "usage.h"

char *color[16] = { "green", "blue", "orange", "red", "yellow", "magenta",
"pink", "white", "black" };
=======================================
--- /trunk/src/heuristics.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/heuristics.c Thu Nov 15 13:34:19 2012
@@ -8,9 +8,9 @@
#include <string.h>
#include <math.h>

-#include "./utils.h"
-#include "./logging.h"
-#include "./heuristics.h"
+#include "utils.h"
+#include "logging.h"
+#include "heuristics.h"

#define log_lvl_heur 2
/**
=======================================
--- /trunk/src/logging.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/logging.c Thu Nov 15 13:34:19 2012
@@ -19,11 +19,11 @@
#include <zlib.h>
/* #endif */

-#include "./logging.h"
+#include "logging.h"
/* #include "testoptions.h" */
-#include "./strlutils.h"
-#include "./utils.h"
-#include "./protocol.h"
+#include "strlutils.h"
+#include "utils.h"
+#include "protocol.h"

static int _debuglevel = 0;
static char* _programname = "";
=======================================
--- /trunk/src/logging.h Thu Nov 15 13:33:44 2012
+++ /trunk/src/logging.h Thu Nov 15 13:34:19 2012
@@ -13,8 +13,8 @@
#include <dirent.h>
#include <sys/stat.h>
#include <sys/types.h>
-#include "./ndtptestconstants.h"
-#include "./runningtest.h" // protocol validation
+#include "ndtptestconstants.h"
+#include "runningtest.h" // protocol validation
#define LOG_FACILITY LOG_LOCAL0 /* Syslog facility to log at */
#define LOGDIR "serverdata" // directory for detailed snaplog and tcpdump files
#define LOGFILE "web100srv.log" /* Name of log file */
=======================================
--- /trunk/src/mrange.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/mrange.c Thu Nov 15 13:34:19 2012
@@ -10,9 +10,9 @@
#include <assert.h>
#include <string.h>

-#include "./utils.h"
-#include "./logging.h"
-#include "./strlutils.h"
+#include "utils.h"
+#include "logging.h"
+#include "strlutils.h"

typedef struct range {
int min; /**< lower end of the range */
=======================================
--- /trunk/src/ndt_odbc.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/ndt_odbc.c Thu Nov 15 13:34:19 2012
@@ -14,9 +14,9 @@
#include <sqlext.h>
#endif

-#include "./ndt_odbc.h"
-#include "./logging.h"
-#include "./strlutils.h"
+#include "ndt_odbc.h"
+#include "logging.h"
+#include "strlutils.h"

#if defined(HAVE_ODBC) && defined(DATABASE_ENABLED) && defined(HAVE_SQL_H)
SQLHENV env;
=======================================
--- /trunk/src/ndtptestconstants.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/ndtptestconstants.c Thu Nov 15 13:34:19 2012
@@ -8,7 +8,7 @@
*/

#include <string.h>
-#include "./ndtptestconstants.h"
+#include "ndtptestconstants.h"

// The arrays below rely on the ordering of corresponding enum in the .h file.
// test names
=======================================
--- /trunk/src/network.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/network.c Thu Nov 15 13:34:19 2012
@@ -11,8 +11,8 @@
#include <string.h>
#include <unistd.h>

-#include "./network.h"
-#include "./logging.h"
+#include "network.h"
+#include "logging.h"

/**
* Create and bind socket.
=======================================
--- /trunk/src/protocol.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/protocol.c Thu Nov 15 13:34:19 2012
@@ -5,8 +5,8 @@
*

*/

-#include "./protocol.h"
-#include "./logging.h"
+#include "protocol.h"
+#include "logging.h"

/**
* Check if the received msg type is compatible
=======================================
--- /trunk/src/protocol.h Thu Nov 15 13:33:44 2012
+++ /trunk/src/protocol.h Thu Nov 15 13:34:19 2012
@@ -10,7 +10,7 @@
#define SRC_PROTOCOL_H_

// new addition after separating out ndtptests header
-#include "./ndtptestconstants.h" // protocol validation
+#include "ndtptestconstants.h" // protocol validation
// Todo could be made into enumeration
#define COMM_FAILURE 0
#define SRV_QUEUE 1
=======================================
--- /trunk/src/runningtest.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/runningtest.c Thu Nov 15 13:34:19 2012
@@ -5,8 +5,8 @@
* Created on: Sep 28, 2011
* Author: kkumar
*/
-#include "./ndtptestconstants.h"
-#include "./runningtest.h"
+#include "ndtptestconstants.h"
+#include "runningtest.h"

static int currentTest = TEST_NONE;
static enum Tx_DIRECTION currentDirection = NONE;
=======================================
--- /trunk/src/test_c2s_clt.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/test_c2s_clt.c Thu Nov 15 13:34:19 2012
@@ -12,11 +12,11 @@
#include <string.h>
#include <unistd.h>

-#include "./clt_tests.h"
-#include "./logging.h"
-#include "./network.h"
-#include "./protocol.h"
-#include "./utils.h"
+#include "clt_tests.h"
+#include "logging.h"
+#include "network.h"
+#include "protocol.h"
+#include "utils.h"

int pkts, lth;
int sndqueue;
=======================================
--- /trunk/src/test_c2s_srv.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/test_c2s_srv.c Thu Nov 15 13:34:19 2012
@@ -10,16 +10,16 @@
#include <syslog.h>
#include <pthread.h>
#include <sys/times.h>
-#include "./tests_srv.h"
-#include "./strlutils.h"
-#include "./ndtptestconstants.h"
-#include "./utils.h"
-#include "./testoptions.h"
-#include "./runningtest.h"
-#include "./logging.h"
-#include "./protocol.h"
-#include "./network.h"
-#include "./mrange.h"
+#include "tests_srv.h"
+#include "strlutils.h"
+#include "ndtptestconstants.h"
+#include "utils.h"
+#include "testoptions.h"
+#include "runningtest.h"
+#include "logging.h"
+#include "protocol.h"
+#include "network.h"
+#include "mrange.h"

// used to store file descriptors of pipes created for ndttrace for C2S tests
int mon_pipe1[2];
=======================================
--- /trunk/src/test_meta_clt.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/test_meta_clt.c Thu Nov 15 13:34:19 2012
@@ -14,11 +14,11 @@
#include <string.h>
#include <unistd.h>

-#include "./test_meta.h"
-#include "./logging.h"
-#include "./network.h"
-#include "./protocol.h"
-#include "./utils.h"
+#include "test_meta.h"
+#include "logging.h"
+#include "network.h"
+#include "protocol.h"
+#include "utils.h"

int pkts, lth;
int sndqueue;
=======================================
--- /trunk/src/test_meta_srv.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/test_meta_srv.c Thu Nov 15 13:34:19 2012
@@ -12,12 +12,12 @@
#include <string.h>
#include <unistd.h>

-#include "./test_meta.h"
-#include "./logging.h"
-#include "./network.h"
-#include "./protocol.h"
-#include "./utils.h"
-#include "./testoptions.h"
+#include "test_meta.h"
+#include "logging.h"
+#include "network.h"
+#include "protocol.h"
+#include "utils.h"
+#include "testoptions.h"

/**
* Performs the META test.
=======================================
--- /trunk/src/test_mid_clt.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/test_mid_clt.c Thu Nov 15 13:34:19 2012
@@ -10,12 +10,12 @@
#include <unistd.h>
#include <string.h>

-#include "./clt_tests.h"
-#include "./logging.h"
-#include "./network.h"
-#include "./protocol.h"
-#include "./utils.h"
-#include "./strlutils.h"
+#include "clt_tests.h"
+#include "logging.h"
+#include "network.h"
+#include "protocol.h"
+#include "utils.h"
+#include "strlutils.h"

/**
* Perform the client part of the middleBox testing. The middlebox test
=======================================
--- /trunk/src/test_mid_srv.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/test_mid_srv.c Thu Nov 15 13:34:19 2012
@@ -14,16 +14,16 @@
#include <sys/times.h>
#include <assert.h>

-#include "./tests_srv.h"
-#include "./strlutils.h"
-#include "./ndtptestconstants.h"
-#include "./utils.h"
-#include "./testoptions.h"
-#include "./runningtest.h"
-#include "./logging.h"
-#include "./protocol.h"
-#include "./network.h"
-#include "./mrange.h"
+#include "tests_srv.h"
+#include "strlutils.h"
+#include "ndtptestconstants.h"
+#include "utils.h"
+#include "testoptions.h"
+#include "runningtest.h"
+#include "logging.h"
+#include "protocol.h"
+#include "network.h"
+#include "mrange.h"

/**
* Perform the Middlebox test.
=======================================
--- /trunk/src/test_results_clt.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/test_results_clt.c Thu Nov 15 13:34:19 2012
@@ -9,10 +9,10 @@
#include <string.h>
#include <stdio.h>

-#include "./logging.h"
-#include "./utils.h"
-#include "./clt_tests.h"
-#include "./test_results_clt.h"
+#include "logging.h"
+#include "utils.h"
+#include "clt_tests.h"
+#include "test_results_clt.h"

#ifndef VIEW_DIFF
#define VIEW_DIFF 0.1
=======================================
--- /trunk/src/test_s2c_clt.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/test_s2c_clt.c Thu Nov 15 13:34:19 2012
@@ -10,12 +10,12 @@
#include <stdlib.h>
#include <string.h>

-#include "./clt_tests.h"
-#include "./logging.h"
-#include "./network.h"
-#include "./protocol.h"
-#include "./utils.h"
-#include "./strlutils.h"
+#include "clt_tests.h"
+#include "logging.h"
+#include "network.h"
+#include "protocol.h"
+#include "utils.h"
+#include "strlutils.h"

int ssndqueue, sbytes;
double spdin, s2cspd;
=======================================
--- /trunk/src/test_s2c_srv.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/test_s2c_srv.c Thu Nov 15 13:34:19 2012
@@ -11,16 +11,16 @@
#include <pthread.h>
#include <sys/times.h>
#include <ctype.h>
-#include "./tests_srv.h"
-#include "./strlutils.h"
-#include "./ndtptestconstants.h"
-#include "./utils.h"
-#include "./testoptions.h"
-#include "./runningtest.h"
-#include "./logging.h"
-#include "./protocol.h"
-#include "./network.h"
-#include "./mrange.h"
+#include "tests_srv.h"
+#include "strlutils.h"
+#include "ndtptestconstants.h"
+#include "utils.h"
+#include "testoptions.h"
+#include "runningtest.h"
+#include "logging.h"
+#include "protocol.h"
+#include "network.h"
+#include "mrange.h"

extern pthread_mutex_t mainmutex;
extern pthread_cond_t maincond;
=======================================
--- /trunk/src/test_sfw_clt.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/test_sfw_clt.c Thu Nov 15 13:34:19 2012
@@ -13,11 +13,11 @@
#include <string.h>
#include <signal.h>

-#include "./test_sfw.h"
-#include "./logging.h"
-#include "./protocol.h"
-#include "./network.h"
-#include "./utils.h"
+#include "test_sfw.h"
+#include "logging.h"
+#include "protocol.h"
+#include "network.h"
+#include "utils.h"

static int c2s_result = SFW_NOTTESTED;
static int s2c_result = SFW_NOTTESTED;
=======================================
--- /trunk/src/test_sfw_srv.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/test_sfw_srv.c Thu Nov 15 13:34:19 2012
@@ -9,14 +9,14 @@
#include <assert.h>
#include <pthread.h>

-#include "./test_sfw.h"
-#include "./logging.h"
-#include "./protocol.h"
-#include "./network.h"
-#include "./utils.h"
-#include "./testoptions.h"
-#include "./runningtest.h"
-#include "./strlutils.h"
+#include "test_sfw.h"
+#include "logging.h"
+#include "protocol.h"
+#include "network.h"
+#include "utils.h"
+#include "testoptions.h"
+#include "runningtest.h"
+#include "strlutils.h"

static pthread_mutex_t mainmutex = PTHREAD_MUTEX_INITIALIZER;
static pthread_cond_t maincond = PTHREAD_COND_INITIALIZER;
=======================================
--- /trunk/src/testoptions.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/testoptions.c Thu Nov 15 13:34:19 2012
@@ -10,15 +10,15 @@
// #include <ctype.h>
#include <pthread.h>

-#include "./testoptions.h"
-#include "./network.h"
-#include "./mrange.h"
-#include "./logging.h"
-#include "./utils.h"
-#include "./protocol.h"
-#include "./I2util/util.h"
-#include "./runningtest.h"
-#include "./strlutils.h"
+#include "testoptions.h"
+#include "network.h"
+#include "mrange.h"
+#include "logging.h"
+#include "utils.h"
+#include "protocol.h"
+#include "I2util/util.h"
+#include "runningtest.h"
+#include "strlutils.h"


// Worker thread characteristics used to record snaplog and Cwnd peaks
=======================================
--- /trunk/src/testoptions.h Thu Nov 15 13:33:44 2012
+++ /trunk/src/testoptions.h Thu Nov 15 13:34:19 2012
@@ -9,7 +9,7 @@
#ifndef SRC_TESTOPTIONS_H_
#define SRC_TESTOPTIONS_H_

-#include "./web100srv.h"
+#include "web100srv.h"

#define LISTENER_SOCKET_CREATE_FAILED -1
#define SOCKET_CONNECT_TIMEOUT -100
=======================================
--- /trunk/src/tests_srv.h Thu Nov 15 13:33:44 2012
+++ /trunk/src/tests_srv.h Thu Nov 15 13:34:19 2012
@@ -9,7 +9,7 @@
#ifndef SRC_TESTS_SRV_H_
#define SRC_TESTS_SRV_H_

-#include "./testoptions.h"
+#include "testoptions.h"

int test_c2s(int ctlsockfd, web100_agent* agent, TestOptions* testOptions,
int conn_options, double* c2sspd, int set_buff, int window,
=======================================
--- /trunk/src/tr-mkmap.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/tr-mkmap.c Thu Nov 15 13:34:19 2012
@@ -37,10 +37,10 @@
#include <netdb.h>
#include <getopt.h>

-#include "./tr-tree.h"
-#include "./usage.h"
-#include "./logging.h"
-#include "./strlutils.h"
+#include "tr-tree.h"
+#include "usage.h"
+#include "logging.h"
+#include "strlutils.h"

struct tr_tree *tr_root, *tr_cur;
char* DefaultTree = NULL;
=======================================
--- /trunk/src/tr-tree.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/tr-tree.c Thu Nov 15 13:34:19 2012
@@ -32,8 +32,8 @@
#include <sys/socket.h>
#include <netdb.h>

-#include "./tr-tree.h"
-#include "./logging.h"
+#include "tr-tree.h"
+#include "logging.h"

struct tr_tree *tr_root, *tr_cur;
int found_node;
=======================================
--- /trunk/src/tr-tree6.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/tr-tree6.c Thu Nov 15 13:34:19 2012
@@ -35,8 +35,8 @@
#include <netdb.h>
#include <arpa/inet.h>

-#include "./tr-tree.h"
-#include "./logging.h"
+#include "tr-tree.h"
+#include "logging.h"

#ifdef AF_INET6

=======================================
--- /trunk/src/troute.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/troute.c Thu Nov 15 13:34:19 2012
@@ -67,7 +67,7 @@
#include <netdb.h>
#include <stdio.h>

-#include "./logging.h"
+#include "logging.h"

#define MAXPACKET 65535 /* max ip packet size */
#ifndef MAXHOSTNAMELEN
=======================================
--- /trunk/src/troute6.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/troute6.c Thu Nov 15 13:34:19 2012
@@ -273,7 +273,7 @@
#include <string.h>
#include <unistd.h>

-#include "./logging.h"
+#include "logging.h"

#define MAXPACKET 65535
#ifndef MAXHOSTNAMELEN
=======================================
--- /trunk/src/utils.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/utils.c Thu Nov 15 13:34:19 2012
@@ -20,8 +20,8 @@
#include <sys/ioctl.h>
#include <errno.h>

-#include "./utils.h"
-#include "./strlutils.h"
+#include "utils.h"
+#include "strlutils.h"

/**
* Check if the string is a valid int number.
=======================================
--- /trunk/src/viewtrace.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/viewtrace.c Thu Nov 15 13:34:19 2012
@@ -31,10 +31,10 @@
#include <net/ethernet.h>
#endif

-#include "./web100srv.h"
-#include "./usage.h"
-#include "./logging.h"
-#include "./utils.h"
+#include "web100srv.h"
+#include "usage.h"
+#include "logging.h"
+#include "utils.h"

struct spdpair fwd, rev;
int start, finish, fini;
=======================================
--- /trunk/src/web100-admin.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/web100-admin.c Thu Nov 15 13:34:19 2012
@@ -12,11 +12,11 @@
#include <sys/stat.h>
#include <unistd.h>

-#include "./web100srv.h"
-#include "./logging.h"
-#include "./web100-admin.h"
-#include "./utils.h"
-#include "./strlutils.h"
+#include "web100srv.h"
+#include "logging.h"
+#include "web100-admin.h"
+#include "utils.h"
+#include "strlutils.h"

/* Initialize the Administrator view. Process the data in the existing log file to
* catch up on what's happened before.
=======================================
--- /trunk/src/web100-pcap.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/web100-pcap.c Thu Nov 15 13:34:19 2012
@@ -13,14 +13,14 @@
#include <assert.h>

/* local include file contains needed structures */
-#include "./web100srv.h"
-#include "./network.h"
-#include "./logging.h"
+#include "web100srv.h"
+#include "network.h"
+#include "logging.h"
#include <net/if.h>
#include <linux/sockios.h>
#include <sys/ioctl.h>
-#include "./strlutils.h"
-#include "./utils.h"
+#include "strlutils.h"
+#include "utils.h"

int dumptrace;
pcap_t *pd;
=======================================
--- /trunk/src/web100-util.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/web100-util.c Thu Nov 15 13:34:19 2012
@@ -10,12 +10,12 @@
#include <time.h>
#include <assert.h>

-#include "./web100srv.h"
-#include "./network.h"
-#include "./logging.h"
-#include "./utils.h"
-#include "./protocol.h"
-#include "./strlutils.h"
+#include "web100srv.h"
+#include "network.h"
+#include "logging.h"
+#include "utils.h"
+#include "protocol.h"
+#include "strlutils.h"

/**
* set up the necessary structures for monitoring connections at the
=======================================
--- /trunk/src/web100clt.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/web100clt.c Thu Nov 15 13:34:19 2012
@@ -8,17 +8,17 @@
#include <time.h>
#include <unistd.h>

-#include "./network.h"
-#include "./usage.h"
-#include "./logging.h"
-#include "./varinfo.h"
-#include "./utils.h"
-#include "./protocol.h"
-#include "./test_sfw.h"
-#include "./test_meta.h"
-#include "./clt_tests.h"
-#include "./strlutils.h"
-#include "./test_results_clt.h"
+#include "network.h"
+#include "usage.h"
+#include "logging.h"
+#include "varinfo.h"
+#include "utils.h"
+#include "protocol.h"
+#include "test_sfw.h"
+#include "test_meta.h"
+#include "clt_tests.h"
+#include "strlutils.h"
+#include "test_results_clt.h"

extern int h_errno;

=======================================
--- /trunk/src/web100srv.c Thu Nov 15 13:33:44 2012
+++ /trunk/src/web100srv.c Thu Nov 15 13:34:19 2012
@@ -71,21 +71,21 @@
#include <syslog.h>
#include <sys/times.h>

-#include "./web100srv.h"
-#include "./network.h"
-#include "./usage.h"
-#include "./utils.h"
-#include "./mrange.h"
-#include "./logging.h"
-#include "./testoptions.h"
-#include "./protocol.h"
-#include "./web100-admin.h"
-#include "./test_sfw.h"
-#include "./ndt_odbc.h"
-#include "./runningtest.h"
-#include "./strlutils.h"
-#include "./heuristics.h"
-#include "./tests_srv.h"
+#include "web100srv.h"
+#include "network.h"
+#include "usage.h"
+#include "utils.h"
+#include "mrange.h"
+#include "logging.h"
+#include "testoptions.h"
+#include "protocol.h"
+#include "web100-admin.h"
+#include "test_sfw.h"
+#include "ndt_odbc.h"
+#include "runningtest.h"
+#include "strlutils.h"
+#include "heuristics.h"
+#include "tests_srv.h"

static char lgfn[FILENAME_SIZE]; // log file name
static char wvfn[FILENAME_SIZE]; // file name of web100-variables list


  • [ndt-dev] [ndt] r791 committed - Conforming to google style, ndt, 11/15/2012

Archive powered by MHonArc 2.6.16.

Top of Page