1999-11-17 23:50:41 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- OSPF
|
|
|
|
*
|
2000-06-08 06:53:51 +08:00
|
|
|
* (c) 1999 - 2000 Ondrej Filip <feela@network.cz>
|
1999-11-17 23:50:41 +08:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ospf.h"
|
|
|
|
|
2000-06-08 06:53:51 +08:00
|
|
|
/**
|
|
|
|
* ospf_dbdes_tx - transmit database description packet
|
|
|
|
* @n: neighbor
|
|
|
|
*
|
2003-08-23 18:42:41 +08:00
|
|
|
* Sending of a database description packet is described in 10.6 of RFC 2328.
|
|
|
|
* Reception of each packet is acknowledged in the sequence number of another.
|
|
|
|
* When I send a packet to a neighbor I keep a copy in a buffer. If the neighbor
|
|
|
|
* does not reply, I don't create a new packet but just send the content
|
|
|
|
* of the buffer.
|
2000-06-08 06:53:51 +08:00
|
|
|
*/
|
1999-11-17 23:50:41 +08:00
|
|
|
void
|
|
|
|
ospf_dbdes_tx(struct ospf_neighbor *n)
|
|
|
|
{
|
|
|
|
struct ospf_dbdes_packet *pkt;
|
|
|
|
struct ospf_packet *op;
|
2000-05-11 07:42:37 +08:00
|
|
|
struct ospf_iface *ifa=n->ifa;
|
2000-06-07 21:19:48 +08:00
|
|
|
struct ospf_area *oa=ifa->oa;
|
1999-11-17 23:50:41 +08:00
|
|
|
u16 length;
|
|
|
|
struct proto *p;
|
2000-03-08 20:50:28 +08:00
|
|
|
u16 i,j;
|
|
|
|
u8 *aa,*bb;
|
1999-11-17 23:50:41 +08:00
|
|
|
|
2000-06-09 03:02:31 +08:00
|
|
|
if((oa->rt==NULL)||(EMPTY_LIST(oa->lsal))) originate_rt_lsa(oa);
|
|
|
|
oa->origrt=0;
|
|
|
|
|
|
|
|
|
1999-11-17 23:50:41 +08:00
|
|
|
p=(struct proto *)(ifa->proto);
|
|
|
|
|
|
|
|
switch(n->state)
|
|
|
|
{
|
|
|
|
case NEIGHBOR_EXSTART: /* Send empty packets */
|
2004-05-31 21:22:49 +08:00
|
|
|
n->myimms.bit.i=1;
|
2000-03-29 08:34:28 +08:00
|
|
|
pkt=(struct ospf_dbdes_packet *)(ifa->ip_sk->tbuf);
|
|
|
|
op=(struct ospf_packet *)pkt;
|
2000-06-03 09:29:00 +08:00
|
|
|
fill_ospf_pkt_hdr(ifa, pkt, DBDES_P);
|
2000-06-06 03:35:48 +08:00
|
|
|
pkt->iface_mtu=htons(ifa->iface->mtu); /* FIXME NOT for VLINK! */
|
1999-11-17 23:50:41 +08:00
|
|
|
pkt->options= ifa->options;
|
|
|
|
pkt->imms=n->myimms;
|
2000-03-30 01:18:06 +08:00
|
|
|
pkt->ddseq=htonl(n->dds);
|
1999-11-17 23:50:41 +08:00
|
|
|
length=sizeof(struct ospf_dbdes_packet);
|
|
|
|
op->length=htons(length);
|
|
|
|
ospf_pkt_finalize(ifa, op);
|
|
|
|
sk_send_to(ifa->ip_sk,length, n->ip, OSPF_PROTO);
|
2000-06-06 10:34:57 +08:00
|
|
|
OSPF_TRACE(D_PACKETS, "DB_DES (I) sent to %I via %s.", n->ip,
|
2000-05-11 07:42:37 +08:00
|
|
|
ifa->iface->name);
|
2000-03-08 20:50:28 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case NEIGHBOR_EXCHANGE:
|
2004-05-31 21:22:49 +08:00
|
|
|
n->myimms.bit.i=0;
|
|
|
|
|
2000-03-30 01:18:06 +08:00
|
|
|
if(((n->myimms.bit.ms) && (n->dds==n->ddr+1)) ||
|
|
|
|
((!(n->myimms.bit.ms)) && (n->dds==n->ddr)))
|
2000-03-08 20:50:28 +08:00
|
|
|
{
|
|
|
|
snode *sn; /* Send next */
|
2000-03-10 06:38:05 +08:00
|
|
|
struct ospf_lsa_header *lsa;
|
2000-03-29 08:34:28 +08:00
|
|
|
|
|
|
|
pkt=n->ldbdes;
|
|
|
|
op=(struct ospf_packet *)pkt;
|
2000-03-08 20:50:28 +08:00
|
|
|
|
2000-06-03 09:29:00 +08:00
|
|
|
fill_ospf_pkt_hdr(ifa, pkt, DBDES_P);
|
2000-03-29 08:34:28 +08:00
|
|
|
pkt->iface_mtu=htons(ifa->iface->mtu);
|
2000-03-08 20:50:28 +08:00
|
|
|
pkt->options= ifa->options;
|
2000-03-30 01:18:06 +08:00
|
|
|
pkt->ddseq=htonl(n->dds);
|
2000-03-08 20:50:28 +08:00
|
|
|
|
2000-05-09 21:56:47 +08:00
|
|
|
j=i=(ifa->iface->mtu-sizeof(struct ospf_dbdes_packet)-SIPH)/
|
2003-08-23 18:47:46 +08:00
|
|
|
sizeof(struct ospf_lsa_header); /* Number of possible lsaheaders to send */
|
2000-03-08 20:50:28 +08:00
|
|
|
lsa=(n->ldbdes+sizeof(struct ospf_dbdes_packet));
|
|
|
|
|
2000-03-30 01:18:06 +08:00
|
|
|
if(n->myimms.bit.m)
|
|
|
|
{
|
2000-03-30 01:51:40 +08:00
|
|
|
sn=s_get(&(n->dbsi));
|
2000-03-30 01:18:06 +08:00
|
|
|
|
2000-03-30 01:51:40 +08:00
|
|
|
DBG("Number of LSA: %d\n", j);
|
|
|
|
for(;i>0;i--)
|
|
|
|
{
|
|
|
|
struct top_hash_entry *en;
|
2000-03-08 20:50:28 +08:00
|
|
|
|
2000-03-30 01:51:40 +08:00
|
|
|
en=(struct top_hash_entry *)sn;
|
|
|
|
htonlsah(&(en->lsa), lsa);
|
|
|
|
DBG("Working on: %d\n", i);
|
2001-08-19 19:15:24 +08:00
|
|
|
DBG("\tX%01x %-1I %-1I %p\n", en->lsa.type, en->lsa.id,
|
2000-03-30 01:51:40 +08:00
|
|
|
en->lsa.rt, en->lsa_body);
|
|
|
|
|
2000-04-04 23:55:55 +08:00
|
|
|
if(sn==STAIL(n->ifa->oa->lsal))
|
2000-03-30 01:51:40 +08:00
|
|
|
{
|
2000-05-09 21:56:47 +08:00
|
|
|
i--;
|
2000-05-31 07:29:23 +08:00
|
|
|
break; /* Should set some flag? */
|
2000-03-30 01:51:40 +08:00
|
|
|
}
|
|
|
|
sn=sn->next;
|
|
|
|
lsa++;
|
|
|
|
}
|
2000-03-29 08:34:28 +08:00
|
|
|
|
2000-04-04 23:55:55 +08:00
|
|
|
if(sn==STAIL(n->ifa->oa->lsal))
|
2000-03-08 20:50:28 +08:00
|
|
|
{
|
2000-03-30 01:51:40 +08:00
|
|
|
DBG("Number of LSA NOT sent: %d\n", i);
|
|
|
|
DBG("M bit unset.\n");
|
|
|
|
n->myimms.bit.m=0; /* Unset more bit */
|
2000-03-08 20:50:28 +08:00
|
|
|
}
|
2000-05-09 21:56:47 +08:00
|
|
|
else s_put(&(n->dbsi),sn);
|
2000-03-30 01:18:06 +08:00
|
|
|
}
|
2000-03-29 08:34:28 +08:00
|
|
|
|
2000-03-29 20:45:37 +08:00
|
|
|
pkt->imms.byte=n->myimms.byte;
|
2000-03-08 20:50:28 +08:00
|
|
|
|
2000-03-29 08:34:28 +08:00
|
|
|
length=(j-i)*sizeof(struct ospf_lsa_header)+
|
2000-03-10 06:38:05 +08:00
|
|
|
sizeof(struct ospf_dbdes_packet);
|
2000-03-08 20:50:28 +08:00
|
|
|
op->length=htons(length);
|
2000-03-29 20:45:37 +08:00
|
|
|
|
2000-03-08 20:50:28 +08:00
|
|
|
ospf_pkt_finalize(ifa, op);
|
2003-08-23 18:47:46 +08:00
|
|
|
DBG("%s: DB_DES (M) prepared for %I.\n", p->name, n->ip);
|
2000-03-08 20:50:28 +08:00
|
|
|
}
|
|
|
|
|
2000-03-30 01:18:06 +08:00
|
|
|
case NEIGHBOR_LOADING:
|
|
|
|
case NEIGHBOR_FULL:
|
2000-03-08 20:50:28 +08:00
|
|
|
aa=ifa->ip_sk->tbuf;
|
|
|
|
bb=n->ldbdes;
|
2000-03-29 08:34:28 +08:00
|
|
|
op=n->ldbdes;
|
2000-03-08 20:50:28 +08:00
|
|
|
length=ntohs(op->length);
|
|
|
|
|
2000-05-09 21:56:47 +08:00
|
|
|
for(i=0; i<length; i++)
|
2000-03-08 20:50:28 +08:00
|
|
|
{
|
2000-03-29 20:45:37 +08:00
|
|
|
*(aa+i)=*(bb+i); /* Copy last sent packet again */
|
2000-03-08 20:50:28 +08:00
|
|
|
}
|
2000-03-29 20:32:25 +08:00
|
|
|
|
2000-03-08 20:50:28 +08:00
|
|
|
sk_send_to(ifa->ip_sk,length, n->ip, OSPF_PROTO);
|
2000-06-06 10:34:57 +08:00
|
|
|
OSPF_TRACE(D_PACKETS, "DB_DES (M) sent to %I via %s.", n->ip,
|
2000-05-11 07:42:37 +08:00
|
|
|
ifa->iface->name);
|
2004-06-04 20:53:10 +08:00
|
|
|
if(! n->myimms.bit.ms)
|
2000-03-30 01:18:06 +08:00
|
|
|
{
|
|
|
|
if((n->myimms.bit.m==0) && (n->imms.bit.m==0) &&
|
|
|
|
(n->state==NEIGHBOR_EXCHANGE))
|
|
|
|
{
|
|
|
|
ospf_neigh_sm(n, INM_EXDONE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
1999-11-17 23:50:41 +08:00
|
|
|
|
|
|
|
default: /* Ignore it */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-03-30 01:18:06 +08:00
|
|
|
void
|
|
|
|
ospf_dbdes_reqladd(struct ospf_dbdes_packet *ps, struct proto *p,
|
|
|
|
struct ospf_neighbor *n)
|
|
|
|
{
|
|
|
|
struct ospf_lsa_header *plsa,lsa;
|
|
|
|
struct top_hash_entry *he,*sn;
|
|
|
|
struct top_graph *gr;
|
2000-03-30 08:18:59 +08:00
|
|
|
struct ospf_packet *op;
|
|
|
|
int i,j;
|
2000-03-30 01:18:06 +08:00
|
|
|
|
|
|
|
gr=n->ifa->oa->gr;
|
2000-03-30 08:18:59 +08:00
|
|
|
op=(struct ospf_packet *)ps;
|
2000-03-30 01:18:06 +08:00
|
|
|
|
|
|
|
plsa=(void *)(ps+1);
|
2000-03-30 08:18:59 +08:00
|
|
|
|
|
|
|
j=(ntohs(op->length)-sizeof(struct ospf_dbdes_packet))/
|
|
|
|
sizeof( struct ospf_lsa_header);
|
|
|
|
|
|
|
|
for(i=0;i<j;i++)
|
|
|
|
{
|
2000-03-31 03:37:26 +08:00
|
|
|
ntohlsah(plsa+i, &lsa);
|
|
|
|
if(((he=ospf_hash_find(gr,lsa.id,lsa.rt,lsa.type))==NULL)||
|
|
|
|
(lsa_comp(&lsa, &(he->lsa))==1))
|
|
|
|
{
|
2000-04-03 04:41:33 +08:00
|
|
|
/* Is this condition necessary? */
|
2000-03-31 03:37:26 +08:00
|
|
|
if(ospf_hash_find(n->lsrqh,lsa.id,lsa.rt,lsa.type)==NULL)
|
|
|
|
{
|
|
|
|
sn=ospf_hash_get(n->lsrqh,lsa.id,lsa.rt,lsa.type);
|
|
|
|
ntohlsah(plsa+i, &(sn->lsa));
|
|
|
|
s_add_tail(&(n->lsrql), SNODE sn);
|
|
|
|
}
|
|
|
|
}
|
2000-03-30 08:18:59 +08:00
|
|
|
}
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ospf_dbdes_rx(struct ospf_dbdes_packet *ps, struct proto *p,
|
|
|
|
struct ospf_iface *ifa, u16 size)
|
|
|
|
{
|
|
|
|
u32 nrid, myrid;
|
|
|
|
struct ospf_neighbor *n;
|
|
|
|
|
|
|
|
nrid=ntohl(((struct ospf_packet *)ps)->routerid);
|
|
|
|
|
|
|
|
myrid=p->cf->global->router_id;
|
|
|
|
|
|
|
|
if((n=find_neigh(ifa, nrid))==NULL)
|
|
|
|
{
|
2000-06-06 10:34:57 +08:00
|
|
|
OSPF_TRACE(D_PACKETS, "Received dbdes from unknown neigbor! %I.",
|
1999-11-17 23:50:41 +08:00
|
|
|
nrid);
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(ifa->iface->mtu<size)
|
|
|
|
{
|
2000-06-06 10:34:57 +08:00
|
|
|
OSPF_TRACE(D_PACKETS, "Received dbdes larger than MTU from %I!", n->ip);
|
1999-11-17 23:50:41 +08:00
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
2000-06-06 10:34:57 +08:00
|
|
|
OSPF_TRACE(D_PACKETS, "Received dbdes from %I via %s.", n->ip,
|
2000-05-11 07:42:37 +08:00
|
|
|
ifa->iface->name);
|
2000-06-06 03:45:06 +08:00
|
|
|
ospf_neigh_sm(n, INM_HELLOREC);
|
2000-05-10 20:22:00 +08:00
|
|
|
|
1999-11-17 23:50:41 +08:00
|
|
|
switch(n->state)
|
|
|
|
{
|
|
|
|
case NEIGHBOR_DOWN:
|
|
|
|
case NEIGHBOR_ATTEMPT:
|
|
|
|
case NEIGHBOR_2WAY:
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
case NEIGHBOR_INIT:
|
|
|
|
ospf_neigh_sm(n, INM_2WAYREC);
|
|
|
|
if(n->state!=NEIGHBOR_EXSTART) return;
|
|
|
|
case NEIGHBOR_EXSTART:
|
2000-03-29 20:32:25 +08:00
|
|
|
if((ps->imms.bit.m && ps->imms.bit.ms && ps->imms.bit.i)
|
|
|
|
&& (n->rid > myrid) &&
|
1999-11-17 23:50:41 +08:00
|
|
|
(size == sizeof(struct ospf_dbdes_packet)))
|
|
|
|
{
|
|
|
|
/* I'm slave! */
|
2000-03-30 01:18:06 +08:00
|
|
|
n->dds=ntohl(ps->ddseq);
|
|
|
|
n->ddr=ntohl(ps->ddseq);
|
1999-11-17 23:50:41 +08:00
|
|
|
n->options=ps->options;
|
2000-03-29 20:32:25 +08:00
|
|
|
n->myimms.bit.ms=0;
|
|
|
|
n->imms.byte=ps->imms.byte;
|
2000-06-06 10:34:57 +08:00
|
|
|
OSPF_TRACE(D_PACKETS, "I'm slave to %I.", n->ip);
|
1999-11-17 23:50:41 +08:00
|
|
|
ospf_neigh_sm(n, INM_NEGDONE);
|
2000-03-30 01:18:06 +08:00
|
|
|
ospf_dbdes_tx(n);
|
|
|
|
break;
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2000-03-29 20:32:25 +08:00
|
|
|
if(((ps->imms.bit.i==0) && (ps->imms.bit.ms==0)) &&
|
2000-03-30 01:18:06 +08:00
|
|
|
(n->rid < myrid) && (n->dds == ntohl(ps->ddseq)))
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
|
|
|
/* I'm master! */
|
|
|
|
n->options=ps->options;
|
2000-03-30 01:18:06 +08:00
|
|
|
n->ddr=ntohl(ps->ddseq)-1;
|
2000-03-29 20:32:25 +08:00
|
|
|
n->imms.byte=ps->imms.byte;
|
2000-08-19 00:47:27 +08:00
|
|
|
OSPF_TRACE(D_PACKETS, "I'm master to %I.", n->ip);
|
1999-11-17 23:50:41 +08:00
|
|
|
ospf_neigh_sm(n, INM_NEGDONE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2000-05-10 20:22:00 +08:00
|
|
|
DBG("%s: Nothing happend to %I (imms=%u)\n", p->name, n->ip,
|
2000-03-30 01:18:06 +08:00
|
|
|
ps->imms.byte);
|
1999-11-17 23:50:41 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2004-05-31 21:22:49 +08:00
|
|
|
if(ps->imms.bit.i) break;
|
1999-11-17 23:50:41 +08:00
|
|
|
case NEIGHBOR_EXCHANGE:
|
2003-08-23 18:47:46 +08:00
|
|
|
if((ps->imms.byte==n->imms.byte) && (ps->options==n->options) &&
|
2000-03-30 01:18:06 +08:00
|
|
|
(ntohl(ps->ddseq)==n->ddr))
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
|
|
|
/* Duplicate packet */
|
2000-06-06 10:34:57 +08:00
|
|
|
OSPF_TRACE(D_PACKETS, "Received duplicate dbdes from %I.", n->ip);
|
2000-03-29 20:32:25 +08:00
|
|
|
if(n->imms.bit.ms==0)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
|
|
|
ospf_dbdes_tx(n);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-03-30 01:18:06 +08:00
|
|
|
n->ddr=ntohl(ps->ddseq);
|
|
|
|
|
|
|
|
if(ps->imms.bit.ms!=n->imms.bit.ms) /* M/S bit differs */
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2004-05-31 21:22:49 +08:00
|
|
|
log("SEQMIS-BIT-MS\n");
|
1999-11-17 23:50:41 +08:00
|
|
|
ospf_neigh_sm(n, INM_SEQMIS);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-03-29 20:32:25 +08:00
|
|
|
if(ps->imms.bit.i) /* I bit is set */
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2004-05-31 21:22:49 +08:00
|
|
|
log("SEQMIS-BIT-I\n");
|
1999-11-17 23:50:41 +08:00
|
|
|
ospf_neigh_sm(n, INM_SEQMIS);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-03-30 01:51:40 +08:00
|
|
|
n->imms.byte=ps->imms.byte;
|
|
|
|
|
1999-11-17 23:50:41 +08:00
|
|
|
if(ps->options!=n->options) /* Options differs */
|
|
|
|
{
|
2004-05-31 21:22:49 +08:00
|
|
|
log("SEQMIS-OPT\n");
|
1999-11-17 23:50:41 +08:00
|
|
|
ospf_neigh_sm(n, INM_SEQMIS);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-03-29 20:32:25 +08:00
|
|
|
if(n->myimms.bit.ms)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2000-03-30 01:18:06 +08:00
|
|
|
if(ntohl(ps->ddseq)!=n->dds) /* MASTER */
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2004-05-31 21:22:49 +08:00
|
|
|
log("SEQMIS-MASTER\n");
|
1999-11-17 23:50:41 +08:00
|
|
|
ospf_neigh_sm(n, INM_SEQMIS);
|
|
|
|
break;
|
|
|
|
}
|
2000-03-30 01:18:06 +08:00
|
|
|
n->dds++;
|
|
|
|
DBG("Incrementing dds\n");
|
|
|
|
ospf_dbdes_reqladd(ps,p,n);
|
|
|
|
if((n->myimms.bit.m==0) && (ps->imms.bit.m==0))
|
|
|
|
{
|
|
|
|
ospf_neigh_sm(n, INM_EXDONE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ospf_dbdes_tx(n);
|
|
|
|
}
|
|
|
|
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2000-03-30 01:51:40 +08:00
|
|
|
if(ntohl(ps->ddseq)!=(n->dds+1)) /* SLAVE */
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2004-05-31 21:22:49 +08:00
|
|
|
log("SEQMIS-SLAVE\n");
|
1999-11-17 23:50:41 +08:00
|
|
|
ospf_neigh_sm(n, INM_SEQMIS);
|
|
|
|
break;
|
|
|
|
}
|
2000-03-30 01:51:40 +08:00
|
|
|
n->ddr=ntohl(ps->ddseq);
|
|
|
|
n->dds=ntohl(ps->ddseq);
|
2000-03-30 01:18:06 +08:00
|
|
|
ospf_dbdes_reqladd(ps,p,n);
|
|
|
|
ospf_dbdes_tx(n);
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
case NEIGHBOR_LOADING:
|
|
|
|
case NEIGHBOR_FULL:
|
2003-08-23 18:47:46 +08:00
|
|
|
if((ps->imms.byte==n->imms.byte) && (ps->options==n->options) &&
|
2004-05-19 20:30:58 +08:00
|
|
|
(ntohl(ps->ddseq)==n->ddr)) /* Only duplicate are accepted */
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2000-06-06 10:34:57 +08:00
|
|
|
OSPF_TRACE(D_PACKETS, "Received duplicate dbdes from %I.",n->ip);
|
1999-11-17 23:50:41 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-05-31 21:22:49 +08:00
|
|
|
log("SEQMIS-FULL\n");
|
1999-11-17 23:50:41 +08:00
|
|
|
ospf_neigh_sm(n, INM_SEQMIS);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
defaut:
|
2000-06-06 09:00:34 +08:00
|
|
|
bug("%s: Received dbdes from %I in undefined state.", p->name, n->ip);
|
1999-11-17 23:50:41 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|