summaryrefslogtreecommitdiffstats
path: root/usr.sbin/IPXrouted/main.c
diff options
context:
space:
mode:
authorjhay <jhay@FreeBSD.org>1996-04-13 15:13:30 +0000
committerjhay <jhay@FreeBSD.org>1996-04-13 15:13:30 +0000
commit31a4067a68fd28790af3344406d3014a7f10e002 (patch)
tree6d37fe3ef7cebcdc07aae384d9b3b3357c505bfc /usr.sbin/IPXrouted/main.c
parenta8973daccf644ddc42220e04b6136d12fff16060 (diff)
downloadFreeBSD-src-31a4067a68fd28790af3344406d3014a7f10e002.zip
FreeBSD-src-31a4067a68fd28790af3344406d3014a7f10e002.tar.gz
Accept and use the content of packets received that is bigger than the
Novell spec, but still only transmit according to the spec. Add a feature to dump the RIP and SAP tables when a SIGINFO signal is received.
Diffstat (limited to 'usr.sbin/IPXrouted/main.c')
-rw-r--r--usr.sbin/IPXrouted/main.c22
1 files changed, 20 insertions, 2 deletions
diff --git a/usr.sbin/IPXrouted/main.c b/usr.sbin/IPXrouted/main.c
index 2bac1fe..40e5e7a 100644
--- a/usr.sbin/IPXrouted/main.c
+++ b/usr.sbin/IPXrouted/main.c
@@ -35,7 +35,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: main.c,v 1.2 1995/10/27 10:48:28 julian Exp $
+ * $Id: main.c,v 1.3 1995/12/09 09:42:03 julian Exp $
*/
#ifndef lint
@@ -79,7 +79,7 @@ int noteremoterequests; /* squawk on requests from non-local nets */
int r; /* Routing socket to install updates with */
struct sockaddr_ipx ipx_netmask; /* Used in installing routes */
-char packet[MAXPACKETSIZE+sizeof(struct ipx)+1];
+char packet[MAXRXPACKETSIZE+1];
char **argv0;
@@ -92,6 +92,7 @@ struct sap_packet *sap_msg =
void hup(), fkexit(), timer();
void process(int fd, int pkt_type);
int getsocket(int type, int proto, struct sockaddr_ipx *sipx);
+void getinfo();
int
main(argc, argv)
@@ -214,6 +215,7 @@ main(argc, argv)
signal(SIGHUP, hup);
signal(SIGINT, hup);
signal(SIGEMT, fkexit);
+ signal(SIGINFO, getinfo);
timer();
nfds = 1 + max(sapsock, ripsock);
@@ -343,3 +345,19 @@ fkexit()
if (fork() == 0)
exit(0);
}
+
+void
+getinfo()
+{
+ FILE *fh;
+
+ fh = fopen("/tmp/ipxrouted.dmp", "a");
+ if(fh == NULL)
+ return;
+
+ dumpriptable(fh);
+ dumpsaptable(fh, sap_head);
+
+ fclose(fh);
+}
+
OpenPOWER on IntegriCloud