-
Notifications
You must be signed in to change notification settings - Fork 0
/
x25_gr.c
executable file
·89 lines (83 loc) · 1.99 KB
/
x25_gr.c
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
* lib/x25_gr.c This file contains an implementation of the "X.25"
* route print support functions.
*
* Version: lib/x25_gr.c 1.00 08/15/98
*
* Author: Stephane Fillod, <sfillod@charybde.gyptis.frmug.org>
* 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_AFX25
#if 0
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <linux/x25.h>
#include <linux/if_arp.h> /* ARPHRD_X25 */
#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 <string.h>
#include "net-support.h"
//#include "pathnames.h"
#define EXTERN
#if 0
#include "net-locale.h"
#endif
//#include "intl.h"
#include "pcaputil.h"
/* is in net/x25.h, not in the public header file linux/x25.h. Why?*/
#ifndef X25_ADDR_LEN
#define X25_ADDR_LEN 16
#endif
int X25_rprint(int options)
{
FILE *f=fopen(_PATH_PROCNET_X25_ROUTE, "r");
char buffer[256];
char *p;
int digits;
if(f==NULL)
{
printf( "X.25 not configured in this system.\n"); /* xxx */
return 1;
}
printf( "Kernel X.25 routing table\n"); /* xxx */
printf( "Destination Iface\n"); /* xxx */
fgets(buffer,256,f);
while(fgets(buffer,256,f))
{
p = strchr(buffer,'\n');
if (p)
*p=0;
buffer[24]=0;
buffer[35]=0;
digits=atoi(buffer+17);
if (digits < 0 || digits > 15)
digits=15;
buffer[digits]=0;
if (digits == 0)
printf("* %-5s\n", buffer+25);
else
printf("%s/%*d %-5s\n",
buffer,digits-17,digits,buffer+25);
}
fclose(f);
return 0;
}
#endif /* HAVE_AFX25 */