discovery.h 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*********************************************************************
  2. *
  3. * Filename: discovery.h
  4. * Version:
  5. * Description:
  6. * Status: Experimental.
  7. * Author: Dag Brattli <dagb@cs.uit.no>
  8. * Created at: Tue Apr 6 16:53:53 1999
  9. * Modified at: Tue Oct 5 10:05:10 1999
  10. * Modified by: Dag Brattli <dagb@cs.uit.no>
  11. *
  12. * Copyright (c) 1999 Dag Brattli, All Rights Reserved.
  13. * Copyright (c) 2000-2002 Jean Tourrilhes <jt@hpl.hp.com>
  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 DISCOVERY_H
  32. #define DISCOVERY_H
  33. #include <asm/param.h>
  34. #include <net/irda/irda.h>
  35. #include <net/irda/irqueue.h> /* irda_queue_t */
  36. #include <net/irda/irlap_event.h> /* LAP_REASON */
  37. #define DISCOVERY_EXPIRE_TIMEOUT (2*sysctl_discovery_timeout*HZ)
  38. #define DISCOVERY_DEFAULT_SLOTS 0
  39. /*
  40. * This type is used by the protocols that transmit 16 bits words in
  41. * little endian format. A little endian machine stores MSB of word in
  42. * byte[1] and LSB in byte[0]. A big endian machine stores MSB in byte[0]
  43. * and LSB in byte[1].
  44. *
  45. * This structure is used in the code for things that are endian neutral
  46. * but that fit in a word so that we can manipulate them efficiently.
  47. * By endian neutral, I mean things that are really an array of bytes,
  48. * and always used as such, for example the hint bits. Jean II
  49. */
  50. typedef union {
  51. __u16 word;
  52. __u8 byte[2];
  53. } __u16_host_order;
  54. /* Types of discovery */
  55. typedef enum {
  56. DISCOVERY_LOG, /* What's in our discovery log */
  57. DISCOVERY_ACTIVE, /* Doing our own discovery on the medium */
  58. DISCOVERY_PASSIVE, /* Peer doing discovery on the medium */
  59. EXPIRY_TIMEOUT, /* Entry expired due to timeout */
  60. } DISCOVERY_MODE;
  61. #define NICKNAME_MAX_LEN 21
  62. /* Basic discovery information about a peer */
  63. typedef struct irda_device_info discinfo_t; /* linux/irda.h */
  64. /*
  65. * The DISCOVERY structure is used for both discovery requests and responses
  66. */
  67. typedef struct discovery_t {
  68. irda_queue_t q; /* Must be first! */
  69. discinfo_t data; /* Basic discovery information */
  70. int name_len; /* Length of nickname */
  71. LAP_REASON condition; /* More info about the discovery */
  72. int gen_addr_bit; /* Need to generate a new device
  73. * address? */
  74. int nslots; /* Number of slots to use when
  75. * discovering */
  76. unsigned long timestamp; /* Last time discovered */
  77. unsigned long firststamp; /* First time discovered */
  78. } discovery_t;
  79. void irlmp_add_discovery(hashbin_t *cachelog, discovery_t *discovery);
  80. void irlmp_add_discovery_log(hashbin_t *cachelog, hashbin_t *log);
  81. void irlmp_expire_discoveries(hashbin_t *log, __u32 saddr, int force);
  82. struct irda_device_info *irlmp_copy_discoveries(hashbin_t *log, int *pn,
  83. __u16 mask, int old_entries);
  84. #endif