~ubuntu-branches/ubuntu/saucy/wpasupplicant/saucy

« back to all changes in this revision

Viewing changes to src/utils/wpabuf.h

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2010-11-22 09:43:43 UTC
  • mfrom: (1.1.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20101122094343-qgsxaojvmswfri77
Tags: 0.7.3-0ubuntu1
* Get wpasupplicant 0.7.3 from Debian's SVN. Leaving 0.7.3-1 as unreleased
  for now.
* Build-Depend on debhelper 8, since the packaging from Debian uses compat 8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
        *pos = data;
112
112
}
113
113
 
 
114
static inline void wpabuf_put_le16(struct wpabuf *buf, u16 data)
 
115
{
 
116
        u8 *pos = wpabuf_put(buf, 2);
 
117
        WPA_PUT_LE16(pos, data);
 
118
}
 
119
 
114
120
static inline void wpabuf_put_be16(struct wpabuf *buf, u16 data)
115
121
{
116
122
        u8 *pos = wpabuf_put(buf, 2);