Home | History | Annotate | Download | only in ic

Lines Matching defs:cisco

469 	 * reset the last seen times on the cisco keepalive protocol
828 * Add cisco serial line header. If there is no
841 * Add cisco serial line header. If there is no
1535 struct cisco_pkt *cisco;
1606 ("Received CISCO keepalive packet\n"));
1610 ("short CISCO packet %d, wanted %d\n",
1622 cisco = (struct cisco_pkt *)
1626 switch (ntohl(cisco->type)) {
1628 printf("Got CISCO addr_req, ignoring\n");
1633 printf("Got CISCO addr_reply, ignoring\n");
1643 ntohl(cisco->par1), ntohl(cisco->par2),
1644 ntohs(cisco->rel), ntohs(cisco->time0),
1645 ntohs(cisco->time1)));
1647 scp->cka_lastrx = ntohl(cisco->par1);
1653 cisco->par2 = cisco->par1;
1654 cisco->par1 = htonl(scp->cka_lasttx);
1655 cisco->time0 = htons((u_int16_t)(t >> 16));
1656 cisco->time1 = htons((u_int16_t)(t & 0x0000ffff));
1675 ("Unknown CISCO keepalive protocol 0x%04x\n",
1676 ntohl(cisco->type)));