Skip to content

Commit

Permalink
route(1): Pull static data to the top of the file.
Browse files Browse the repository at this point in the history
This is a pre-requisisite to some upcoming changes.

Submitted by:	Sebastian Huber <sebastian.huber@embedded-brains.de>
Discussed on:	-hackers
  • Loading branch information
grimreaper committed Dec 4, 2013
1 parent 8899d0b commit b41ad3b
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions sbin/route/route.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,14 @@ __FBSDID("$FreeBSD$");

#define ATALK_BUF_SIZE 20

struct fibl {
TAILQ_ENTRY(fibl) fl_next;

int fl_num;
int fl_error;
int fl_errno;
};

static struct keytab {
const char *kt_cp;
int kt_i;
Expand All @@ -99,6 +107,13 @@ static int rtm_seq;
static char rt_line[NI_MAXHOST];
static char net_line[MAXHOSTNAMELEN + 1];

static struct {
struct rt_msghdr m_rtm;
char m_space[512];
} m_rtmsg;

static TAILQ_HEAD(fibl_head_t, fibl) fibl_head;

static int atalk_aton(const char *, struct at_addr *);
static char *atalk_ntoa(struct at_addr, char [ATALK_BUF_SIZE]);
static void printb(int, const char *);
Expand Down Expand Up @@ -129,16 +144,6 @@ static void set_metric(char *, int);
static int set_sofib(int);
static void sockaddr(char *, struct sockaddr *, size_t);
static void sodump(struct sockaddr *, const char *);

struct fibl {
TAILQ_ENTRY(fibl) fl_next;

int fl_num;
int fl_error;
int fl_errno;
};
static TAILQ_HEAD(fibl_head_t, fibl) fibl_head;

static int fiboptlist_csv(const char *, struct fibl_head_t *);
static int fiboptlist_range(const char *, struct fibl_head_t *);

Expand Down Expand Up @@ -1483,11 +1488,6 @@ monitor(int argc, char *argv[])
}
}

static struct {
struct rt_msghdr m_rtm;
char m_space[512];
} m_rtmsg;

static int
rtmsg(int cmd, int flags, int fib)
{
Expand Down

0 comments on commit b41ad3b

Please sign in to comment.