fixup comments to reflect that softclock no longer gets a frame ptr
[unix-history] / usr / src / sys / netns / idp.h
CommitLineData
8ae0e4b4 1/*
240edf1f
KS
2 * Copyright (c) 1984, 1985, 1986, 1987 Regents of the University of California.
3 * All rights reserved.
8ae0e4b4 4 *
dbf0c423 5 * %sccs.include.redist.c%
240edf1f 6 *
dbf0c423 7 * @(#)idp.h 7.4 (Berkeley) %G%
8ae0e4b4 8 */
33270ff5
KS
9
10/*
11 * Definitions for NS(tm) Internet Datagram Protocol
12 */
13struct idp {
14 u_short idp_sum; /* Checksum */
15 u_short idp_len; /* Length, in bytes, including header */
16 u_char idp_tc; /* Transport Crontrol (i.e. hop count) */
17 u_char idp_pt; /* Packet Type (i.e. level 2 protocol) */
18 struct ns_addr idp_dna; /* Destination Network Address */
19 struct ns_addr idp_sna; /* Source Network Address */
20};