summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 35bc474)
raw | patch | inline | side by side (parent: 35bc474)
author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Thu, 12 Mar 2009 07:36:39 +0000 (08:36 +0100) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Thu, 12 Mar 2009 07:36:39 +0000 (08:36 +0100) |
src/oping.c | patch | blob | history |
diff --git a/src/oping.c b/src/oping.c
index 227b72c78225c6d82cce451bf4c3773e40606d6c..1c1df5426ff52ac793716dd696489b054027d84f 100644 (file)
--- a/src/oping.c
+++ b/src/oping.c
static char *opt_srcaddr = NULL;
static int opt_count = -1;
-void sigint_handler (int signal)
+static void sigint_handler (int signal)
{
/* Make compiler happy */
signal = 0;
opt_count = 0;
}
-ping_context_t *context_create (void)
+static ping_context_t *context_create (void)
{
ping_context_t *ret;
return (ret);
}
-void context_destroy (ping_context_t *context)
+static void context_destroy (ping_context_t *context)
{
free (context);
}
-void usage_exit (const char *name)
+static void usage_exit (const char *name)
{
fprintf (stderr, "Usage: %s [-46] [-c count] [-i interval] host [host [host ...]]\n",
name);
exit (1);
}
-int read_options (int argc, char **argv)
+static int read_options (int argc, char **argv)
{
int optchar;
return (optind);
}
-void print_host (pingobj_iter_t *iter)
+static void print_host (pingobj_iter_t *iter)
{
double latency;
unsigned int sequence;
}
}
-void time_normalize (struct timespec *ts)
+static void time_normalize (struct timespec *ts)
{
while (ts->tv_nsec < 0)
{
}
}
-void time_calc (struct timespec *ts_dest,
+static void time_calc (struct timespec *ts_dest,
const struct timespec *ts_int,
const struct timeval *tv_begin,
const struct timeval *tv_end)