X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/blobdiff_plain/6c86b28db134c57a8c04cf3245e55fc09e663553..3ea52422f66b38ef51e27dd55269e58b4e82f791:/sys/netiso/tp_events.h diff --git a/sys/netiso/tp_events.h b/sys/netiso/tp_events.h index 7d8d9b084a..484a0cbccc 100644 --- a/sys/netiso/tp_events.h +++ b/sys/netiso/tp_events.h @@ -1,74 +1,87 @@ /* * from: unknown - * $Id$ + * $Id: tp_events.h,v 1.2 1993/10/16 21:05:41 rgrimes Exp $ */ +#ifndef _NETISO_TP_EVENTS_H_ +#define _NETISO_TP_EVENTS_H_ 1 + struct tp_event { - int ev_number; - struct timeval e_time; + int ev_number; + struct timeval e_time; #define TM_inact 0x0 #define TM_retrans 0x1 #define TM_sendack 0x2 #define TM_notused 0x3 - union{ -struct { SeqNum e_low; SeqNum e_high; int e_retrans; } EV_TM_reference; + union{ + struct { SeqNum e_low; SeqNum e_high; int e_retrans; } EV_TM_reference; #define TM_reference 0x4 -struct { SeqNum e_low; SeqNum e_high; int e_retrans; } EV_TM_data_retrans; + struct { SeqNum e_low; SeqNum e_high; int e_retrans; } EV_TM_data_retrans; #define TM_data_retrans 0x5 -struct { - u_char e_reason; - } EV_ER_TPDU; + struct { + u_char e_reason; + } EV_ER_TPDU; #define ER_TPDU 0x6 -struct { struct mbuf *e_data; /* first field */ - int e_datalen; /* 2nd field */ - u_int e_cdt; - } EV_CR_TPDU; + struct { + struct mbuf *e_data; /* first field */ + int e_datalen; /* 2nd field */ + u_int e_cdt; + } EV_CR_TPDU; #define CR_TPDU 0x7 -struct { struct mbuf *e_data; /* first field */ - int e_datalen; /* 2nd field */ - u_short e_sref; - u_char e_reason; - } EV_DR_TPDU; + struct { + struct mbuf *e_data; /* first field */ + int e_datalen; /* 2nd field */ + u_short e_sref; + u_char e_reason; + } EV_DR_TPDU; #define DR_TPDU 0x8 #define DC_TPDU 0x9 -struct { struct mbuf *e_data; /* first field */ - int e_datalen; /* 2nd field */ - u_short e_sref; - u_int e_cdt; - } EV_CC_TPDU; + struct { + struct mbuf *e_data; /* first field */ + int e_datalen; /* 2nd field */ + u_short e_sref; + u_int e_cdt; + } EV_CC_TPDU; #define CC_TPDU 0xa -struct { u_int e_cdt; - SeqNum e_seq; - SeqNum e_subseq; - u_char e_fcc_present; - } EV_AK_TPDU; + struct { + u_int e_cdt; + SeqNum e_seq; + SeqNum e_subseq; + u_char e_fcc_present; + } EV_AK_TPDU; #define AK_TPDU 0xb -struct { struct mbuf *e_data; /* first field */ - int e_datalen; /* 2nd field */ - u_int e_eot; - SeqNum e_seq; - } EV_DT_TPDU; + struct { + struct mbuf *e_data; /* first field */ + int e_datalen; /* 2nd field */ + u_int e_eot; + SeqNum e_seq; + } EV_DT_TPDU; #define DT_TPDU 0xc -struct { struct mbuf *e_data; /* first field */ - int e_datalen; /* 2nd field */ - SeqNum e_seq; - } EV_XPD_TPDU; + struct { + struct mbuf *e_data; /* first field */ + int e_datalen; /* 2nd field */ + SeqNum e_seq; + } EV_XPD_TPDU; #define XPD_TPDU 0xd -struct { SeqNum e_seq; } EV_XAK_TPDU; + struct { + SeqNum e_seq; + } EV_XAK_TPDU; #define XAK_TPDU 0xe #define T_CONN_req 0xf -struct { u_char e_reason; } EV_T_DISC_req; + struct { + u_char e_reason; + } EV_T_DISC_req; #define T_DISC_req 0x10 #define T_LISTEN_req 0x11 @@ -79,9 +92,10 @@ struct { u_char e_reason; } EV_T_DISC_req; #define T_DETACH 0x16 #define T_NETRESET 0x17 #define T_ACPT_req 0x18 - }ev_union; + } ev_union; };/* end struct event */ #define tp_NEVENTS 0x19 #define ATTR(X)ev_union.EV_/**/X/**/ +#endif /* _NETISO_TP_EVENTS_H_ */