summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2003-12-19 21:07:06 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2003-12-19 21:07:06 +0000
commit6196e825baea861f6406810dcc68594d53bd565c (patch)
tree1674a1e4b704fb2e3a3eb097baab49f5bdef2005 /usr.sbin
parentdeeb2e41c046562a06993f0a627be8074a31cb67 (diff)
zap the msg_ struct we don't ever use
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/bgpd/session.h22
1 files changed, 1 insertions, 21 deletions
diff --git a/usr.sbin/bgpd/session.h b/usr.sbin/bgpd/session.h
index e4cc31e0b2c..fb25cf017de 100644
--- a/usr.sbin/bgpd/session.h
+++ b/usr.sbin/bgpd/session.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: session.h,v 1.1 2003/12/17 11:46:54 henning Exp $ */
+/* $OpenBSD: session.h,v 1.2 2003/12/19 21:07:05 henning Exp $ */
/*
* Copyright (c) 2003 Henning Brauer <henning@openbsd.org>
@@ -75,23 +75,3 @@ struct msg_open {
u_int32_t bgpid;
u_int8_t optparamlen;
};
-
-struct msg_notification {
- struct msg_header header;
- u_int8_t errcode;
- u_int8_t subcode;
-};
-
-struct msg_keepalive {
- struct msg_header header;
-};
-
-struct msg_update {
- struct msg_header header;
- u_int16_t withdrawn_len;
- char *withdrawn_data;
- u_int16_t path_len;
- char *path_data;
- char *nlri; /* Network Layer Reachability Info */
-};
-