File: rose_gr.c

package info (click to toggle)
net-tools 1.60-17
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,432 kB
  • ctags: 1,149
  • sloc: ansic: 13,450; makefile: 305; sh: 102
file content (68 lines) | stat: -rw-r--r-- 1,862 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68

/*
 * lib/rose_gr.c      This file contains an implementation of the "ROSE"
 *                      route print support functions.
 *
 * Version:     $Id: rose_gr.c,v 1.4 1999/01/05 20:54:07 philip Exp $
 *
 * Author:      Terry Dawson, VK2KTJ, <terry@perf.no.itg.telstra.com.au>
 *              based on ax25_gr.c by:
 *              Bernd Eckenfels, <ecki@lina.inka.de>
 *              Copyright 1999 Bernd Eckenfels, Germany
 *              base on Code from Jonathan Naylor <jsn@Cs.Nott.AC.UK>
 *
 *              This program is free software; you can redistribute it
 *              and/or  modify it under  the terms of  the GNU General
 *              Public  License as  published  by  the  Free  Software
 *              Foundation;  either  version 2 of the License, or  (at
 *              your option) any later version.
 */
#include "config.h"

#if HAVE_AFROSE
#if 0
#include <sys/types.h>
#include <sys/ioctl.h>
#include <linux/rose.h>
#include <sys/socket.h>
#include <net/if_arp.h>		/* ARPHRD_ROSE */
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#include <string.h>
#include <termios.h>
#endif
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include "net-support.h"
#include "pathnames.h"
#include "intl.h"

int ROSE_rprint(int options)
{
    FILE *f = NULL;
    char buffer[256];
    int use;

    f=fopen(_PATH_PROCNET_ROSE_ROUTE, "r");
    if (f == NULL) {
	perror(_PATH_PROCNET_ROSE_ROUTE);
	printf(_("ROSE not configured in this system.\n"));	/* xxx */
	return 1;
    }
    printf(_("Kernel ROSE routing table\n"));
    printf(_("Destination  Iface    Use\n"));
    fgets(buffer, 256, f);
    while (fgets(buffer, 256, f)) {
	buffer[9] = 0;
	buffer[14] = 0;
	use = atoi(buffer + 15);
	printf("%-9s    %-5s  %5d\n",
	       buffer, buffer + 10, use);
    }
    fclose(f);
    return 0;
}

#endif				/* HAVE_AFROSE */