irlap_frame.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*********************************************************************
  2.  *                
  3.  * Filename:      irlap_frame.h
  4.  * Version:       0.9
  5.  * Description:   IrLAP frame declarations
  6.  * Status:        Experimental.
  7.  * Author:        Dag Brattli <dagb@cs.uit.no>
  8.  * Created at:    Tue Aug 19 10:27:26 1997
  9.  * Modified at:   Sat Dec 25 21:07:26 1999
  10.  * Modified by:   Dag Brattli <dagb@cs.uit.no>
  11.  * 
  12.  *     Copyright (c) 1997-1999 Dag Brattli <dagb@cs.uit.no>,
  13.  *     All Rights Reserved.
  14.  *     
  15.  *     This program is free software; you can redistribute it and/or 
  16.  *     modify it under the terms of the GNU General Public License as 
  17.  *     published by the Free Software Foundation; either version 2 of 
  18.  *     the License, or (at your option) any later version.
  19.  * 
  20.  *     This program is distributed in the hope that it will be useful,
  21.  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
  22.  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  23.  *     GNU General Public License for more details.
  24.  * 
  25.  *     You should have received a copy of the GNU General Public License 
  26.  *     along with this program; if not, write to the Free Software 
  27.  *     Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
  28.  *     MA 02111-1307 USA
  29.  *     
  30.  ********************************************************************/
  31. #ifndef IRLAP_FRAME_H
  32. #define IRLAP_FRAME_H
  33. #include <linux/skbuff.h>
  34. #include <net/irda/irda.h>
  35. #include <net/irda/irlap.h>
  36. #include <net/irda/qos.h>
  37. /* Frame types and templates */
  38. #define INVALID   0xff
  39. /* Unnumbered (U) commands */
  40. #define SNRM_CMD  0x83 /* Set Normal Response Mode */
  41. #define DISC_CMD  0x43 /* Disconnect */
  42. #define XID_CMD   0x2f /* Exchange Station Identification */
  43. #define TEST_CMD  0xe3 /* Test */
  44. /* Unnumbered responses */
  45. #define RNRM_RSP  0x83 /* Request Normal Response Mode */
  46. #define UA_RSP    0x63 /* Unnumbered Acknowledgement */
  47. #define FRMR_RSP  0x87 /* Frame Reject */
  48. #define DM_RSP    0x0f /* Disconnect Mode */
  49. #define RD_RSP    0x43 /* Request Disconnection */
  50. #define XID_RSP   0xaf /* Exchange Station Identification */
  51. #define TEST_RSP  0xe3 /* Test frame */
  52. /* Supervisory (S) */
  53. #define RR        0x01 /* Receive Ready */
  54. #define REJ       0x09 /* Reject */
  55. #define RNR       0x05 /* Receive Not Ready */
  56. #define SREJ      0x0d /* Selective Reject */
  57. /* Information (I) */
  58. #define I_FRAME   0x00 /* Information Format */
  59. #define UI_FRAME  0x03 /* Unnumbered Information */
  60. #define CMD_FRAME 0x01
  61. #define RSP_FRAME 0x00
  62. #define PF_BIT    0x10 /* Poll/final bit */
  63. struct xid_frame {
  64. __u8  caddr; /* Connection address */
  65. __u8  control;
  66. __u8  ident; /* Should always be XID_FORMAT */ 
  67. __u32 saddr; /* Source device address */
  68. __u32 daddr; /* Destination device address */
  69. __u8  flags; /* Discovery flags */
  70. __u8  slotnr;
  71. __u8  version;
  72. } PACK;
  73. struct test_frame {
  74. __u8 caddr;          /* Connection address */
  75. __u8 control;
  76. __u32 saddr;         /* Source device address */
  77. __u32 daddr;         /* Destination device address */
  78. } PACK;
  79. struct ua_frame {
  80. __u8 caddr;
  81. __u8 control;
  82. __u32 saddr; /* Source device address */
  83. __u32 daddr; /* Dest device address */
  84. } PACK;
  85. struct i_frame {
  86. __u8 caddr;
  87. __u8 control;
  88. } PACK;
  89. struct snrm_frame {
  90. __u8  caddr;
  91. __u8  control;
  92. __u32 saddr;
  93. __u32 daddr;
  94. __u8  ncaddr;
  95. } PACK;
  96. void irlap_queue_xmit(struct irlap_cb *self, struct sk_buff *skb);
  97. void irlap_send_discovery_xid_frame(struct irlap_cb *, int S, __u8 s, 
  98.     __u8 command, discovery_t *discovery);
  99. void irlap_send_snrm_frame(struct irlap_cb *, struct qos_info *);
  100. void irlap_send_test_frame(struct irlap_cb *self, __u8 caddr, __u32 daddr, 
  101.    struct sk_buff *cmd);
  102. void irlap_send_ua_response_frame(struct irlap_cb *, struct qos_info *);
  103. void irlap_send_dm_frame(struct irlap_cb *self);
  104. void irlap_send_rd_frame(struct irlap_cb *self);
  105. void irlap_send_disc_frame(struct irlap_cb *self);
  106. void irlap_send_rr_frame(struct irlap_cb *self, int command);
  107. void irlap_send_data_primary(struct irlap_cb *, struct sk_buff *);
  108. void irlap_send_data_primary_poll(struct irlap_cb *, struct sk_buff *);
  109. void irlap_send_data_secondary(struct irlap_cb *, struct sk_buff *);
  110. void irlap_send_data_secondary_final(struct irlap_cb *, struct sk_buff *);
  111. void irlap_resend_rejected_frames(struct irlap_cb *, int command);
  112. void irlap_resend_rejected_frame(struct irlap_cb *self, int command);
  113. void irlap_send_i_frame(struct irlap_cb *, struct sk_buff *, int command);
  114. void irlap_send_ui_frame(struct irlap_cb *self, struct sk_buff *skb,
  115.  __u8 caddr, int command);
  116. extern int irlap_insert_qos_negotiation_params(struct irlap_cb *self, 
  117.        struct sk_buff *skb);
  118. #endif