home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / bsd_srcs / sys / netccitt / hd_var.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-05-29  |  3.8 KB  |  108 lines

  1. /*
  2.  * Copyright (c) University of British Columbia, 1984
  3.  * Copyright (c) 1990 The Regents of the University of California.
  4.  * All rights reserved.
  5.  *
  6.  * This code is derived from software contributed to Berkeley by
  7.  * the Laboratory for Computation Vision and the Computer Science Department
  8.  * of the University of British Columbia.
  9.  *
  10.  * Redistribution and use in source and binary forms, with or without
  11.  * modification, are permitted provided that the following conditions
  12.  * are met:
  13.  * 1. Redistributions of source code must retain the above copyright
  14.  *    notice, this list of conditions and the following disclaimer.
  15.  * 2. Redistributions in binary form must reproduce the above copyright
  16.  *    notice, this list of conditions and the following disclaimer in the
  17.  *    documentation and/or other materials provided with the distribution.
  18.  * 3. All advertising materials mentioning features or use of this software
  19.  *    must display the following acknowledgement:
  20.  *    This product includes software developed by the University of
  21.  *    California, Berkeley and its contributors.
  22.  * 4. Neither the name of the University nor the names of its contributors
  23.  *    may be used to endorse or promote products derived from this software
  24.  *    without specific prior written permission.
  25.  *
  26.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  27.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  28.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  29.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  30.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  31.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  32.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  33.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  34.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  35.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  36.  * SUCH DAMAGE.
  37.  *
  38.  *    @(#)hd_var.h    7.4 (Berkeley) 5/29/91
  39.  */
  40.  
  41. /*
  42.  *
  43.  * hdlc control block
  44.  *
  45.  */
  46.  
  47. struct    hdtxq {
  48.     struct    mbuf *head;
  49.     struct    mbuf *tail;
  50. };
  51.  
  52. struct    hdcb {
  53.     struct    hdcb *hd_next;    /* pointer to next hdlc control block */
  54.     char    hd_state;    /* link state */
  55.     char    hd_vs;        /* send state variable */
  56.     char    hd_vr;        /* receive state variable */
  57.     char    hd_lastrxnr;    /* last received N(R) */
  58.     char    hd_lasttxnr;    /* last transmitted N(R) */
  59.     char    hd_condition;
  60. #define TIMER_RECOVERY_CONDITION        0x01
  61. #define REJ_CONDITION                   0x02
  62. #define REMOTE_RNR_CONDITION            0X04
  63.     char    hd_retxcnt;
  64.     char    hd_xx;
  65.     struct    hdtxq hd_txq;
  66.     struct    mbuf *hd_retxq[MODULUS];
  67.     char    hd_retxqi;
  68.     char    hd_rrtimer;
  69.     char    hd_timer;
  70. #define SET_TIMER(hdp)        hdp->hd_timer = hd_t1
  71. #define KILL_TIMER(hdp)        hdp->hd_timer = 0
  72.     char    hd_dontcopy;    /* if-driver doesn't free I-frames */
  73.     struct    ifnet *hd_ifp;    /* device's network visible interface */
  74.     struct    ifaddr *hd_ifa;    /* device's X.25 network address */
  75.     struct    x25config *hd_xcp;
  76.     caddr_t    hd_pkp;        /* Level III junk */
  77.     int    (*hd_output)();    /* separate entry for HDLC direct output */
  78.  
  79.     /* link statistics */
  80.  
  81.     long    hd_iframes_in;
  82.     long    hd_iframes_out;
  83.     long    hd_rrs_in;
  84.     long    hd_rrs_out;
  85.     short    hd_rejs_in;
  86.     short    hd_rejs_out;
  87.     long    hd_window_condition;
  88.     short    hd_invalid_ns;
  89.     short    hd_invalid_nr;
  90.     short    hd_timeouts;
  91.     short    hd_resets;
  92.     short    hd_unknown;
  93.     short    hd_frmrs_in;
  94.     short    hd_frmrs_out;
  95.     short    hd_rnrs_in;
  96.     short    hd_rnrs_out;
  97. };
  98.  
  99. #ifdef KERNEL
  100. struct    hdcb *hdcbhead;        /* head of linked list of hdcb's */
  101. struct    Frmr_frame hd_frmr;    /* rejected frame diagnostic info */
  102. struct    ifqueue hdintrq;    /* hdlc packet input queue */
  103.  
  104. int    hd_t1;            /* timer T1 value */
  105. int    hd_t3;            /* RR send timer */
  106. int    hd_n2;            /* frame retransmission limit */
  107. #endif
  108.