/* Copyright 1984 by the Massachusetts Institute of Technology */


#include	<types.h>
#include	<sys.h>
#include	"../src/defs.h"
#include	"../src/net.h"
#include	"inparam.h"
#include	"in.h"


/* Unitialized data used by the IN packet handling code.
 */

iorbq	inq;				/* IN packet queue */
iorbq	inlpq;				/* IN locally destined packet queue */
iorbq	inxq;				/* IN xmit packet queue */

/* Names of ICMP opcodes. */
char *icmp_opcode_names[] = {
    "Echo Reply", "unk 1", "unk 2", "Dest. Unreach.",
    "Source Quench", "Redirect", "unk 6", "unk 7",
    "Echo", "unk 9", "unk 10", "Time Exceeded",
    "Parameter Problem", "Timestamp", "Timestamp Reply", "Information Req.",
    "Information Rep." };
int max_icmp_opcode = 16;
