~ubuntu-branches/ubuntu/lucid/wpasupplicant/lucid-updates

« back to all changes in this revision

Viewing changes to common.h

  • Committer: Bazaar Package Importer
  • Author(s): Kel Modderman
  • Date: 2006-10-05 08:04:01 UTC
  • mfrom: (1.1.5 upstream) (3 etch)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20061005080401-r8lqlix4390yos7b
Tags: 0.5.5-2
* Update madwifi headers to latest SVN. (Closes: #388316)
* Remove failed attempt at action locking. [debian/functions.sh,
  debian/wpa_action.sh]
* Add hysteresis checking functions, to avoid "event loops" while
  using wpa-roam. [debian/functions.sh, debian/wpa_action.sh]
* Change of co-maintainer email address.
* Add ishex() function to functions.sh to determine wpa-psk value type in
  plaintext or hex. This effectively eliminates the need for the bogus and
  somewhat confusing wpa-passphrase contruct specific to our scripts and
  allows wpa-psk to work with either a 8 to 63 character long plaintext
  string or 64 character long hex string.
* Adjust README.modes to not refer to the redundant wpa-passphrase stuff.
* Add big fat NOTE about acceptable wpa-psk's to top of example gallery.
* Strip surrounding quotes from wpa-ssid if present, instead of just whining
  about them.
* Update email address in copyright blurb of functions.sh, ifupdown.sh and
  wpa_action.sh.  

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#include <byteswap.h>
23
23
#endif /* __linux__ */
24
24
 
25
 
#if defined(__FreeBSD__) || defined(__NetBSD__)
 
25
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__)
26
26
#include <sys/types.h>
27
27
#include <sys/endian.h>
28
28
#define __BYTE_ORDER    _BYTE_ORDER
31
31
#define bswap_16 bswap16
32
32
#define bswap_32 bswap32
33
33
#define bswap_64 bswap64
34
 
#endif /* defined(__FreeBSD__) || defined(__NetBSD__) */
 
34
#endif /* defined(__FreeBSD__) || defined(__NetBSD__) ||
 
35
        * defined(__DragonFly__) */
35
36
 
36
37
#ifdef CONFIG_NATIVE_WINDOWS
37
38
#include <winsock.h>
238
239
#define wpa_hexdump_key(l,t,b,le) do { } while (0)
239
240
#define wpa_hexdump_ascii(l,t,b,le) do { } while (0)
240
241
#define wpa_hexdump_ascii_key(l,t,b,le) do { } while (0)
 
242
#define wpa_debug_open_file(void) do { } while (0)
 
243
#define wpa_debug_close_file(void) do { } while (0)
241
244
 
242
245
#else /* CONFIG_NO_STDOUT_DEBUG */
243
246
 
 
247
int wpa_debug_open_file(void);
 
248
void wpa_debug_close_file(void);
 
249
 
244
250
/**
245
251
 * wpa_debug_printf_timestamp - Print timestamp for debug output
246
252
 *
492
498
 
493
499
void *wpa_zalloc(size_t size);
494
500
 
 
501
#ifdef CONFIG_NATIVE_WINDOWS
 
502
void wpa_unicode2ascii_inplace(TCHAR *str);
 
503
TCHAR * wpa_strdup_tchar(const char *str);
 
504
#else /* CONFIG_NATIVE_WINDOWS */
 
505
#define wpa_unicode2ascii_inplace(s) do { } while (0)
 
506
#define wpa_strdup_tchar(s) strdup((s))
 
507
#endif /* CONFIG_NATIVE_WINDOWS */
 
508
 
495
509
#endif /* COMMON_H */