diff options
author | Ondrej Filip <feela@network.cz> | 2005-03-15 22:06:36 +0000 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2005-03-15 22:06:36 +0000 |
commit | 94c42054ea65d10477afc76f221e3ac345a431eb (patch) | |
tree | eace02441c60398eea70ca09541abe4f9b24ff70 /proto/ospf/config.Y | |
parent | e6ea2e375e4c547ca1b6fc9c313c2b7940acbd77 (diff) |
Added new parametr 'rx buffer <num>'. BIRD is able to receive
very large packets (if configured).
Diffstat (limited to 'proto/ospf/config.Y')
-rw-r--r-- | proto/ospf/config.Y | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/proto/ospf/config.Y b/proto/ospf/config.Y index f14f1a4c..0c6a4087 100644 --- a/proto/ospf/config.Y +++ b/proto/ospf/config.Y @@ -26,6 +26,7 @@ CF_KEYWORDS(NEIGHBORS, RFC1583COMPAT, STUB, TICK, COST, RETRANSMIT) CF_KEYWORDS(HELLO, TRANSMIT, PRIORITY, DEAD, NONBROADCAST, POINTOPOINT, TYPE) CF_KEYWORDS(NONE, SIMPLE, AUTHENTICATION, STRICT, CRYPTOGRAPHIC) CF_KEYWORDS(ELIGIBLE, POLL, NETWORKS, HIDDEN, VIRTUAL, LINK) +CF_KEYWORDS(RX, BUFFER, LARGE, NORMAL) %type <t> opttext @@ -142,6 +143,9 @@ ospf_iface_item: | AUTHENTICATION NONE { OSPF_PATT->autype = OSPF_AUTH_NONE ; } | AUTHENTICATION SIMPLE { OSPF_PATT->autype = OSPF_AUTH_SIMPLE ; } | AUTHENTICATION CRYPTOGRAPHIC { OSPF_PATT->autype = OSPF_AUTH_CRYPT ; } + | RX BUFFER LARGE { OSPF_PATT->rxbuf = OSPF_RXBUF_LARGE ; } + | RX BUFFER NORMAL { OSPF_PATT->rxbuf = OSPF_RXBUF_NORMAL ; } + | RX BUFFER expr { OSPF_PATT->rxbuf = $3 ; if ($3 < OSPF_RXBUF_MINSIZE) cf_error("Buffer size is too small") ; } | password_list {OSPF_PATT->passwords = (list *) $1; } ; |