wpabuf: Add helper functions for writing 64-bit integers
Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
cf47a43335
commit
edbaffc4f6
1 changed files with 12 additions and 0 deletions
|
@ -133,6 +133,12 @@ static inline void wpabuf_put_le32(struct wpabuf *buf, u32 data)
|
|||
WPA_PUT_LE32(pos, data);
|
||||
}
|
||||
|
||||
static inline void wpabuf_put_le64(struct wpabuf *buf, u64 data)
|
||||
{
|
||||
u8 *pos = (u8 *) wpabuf_put(buf, 8);
|
||||
WPA_PUT_LE64(pos, data);
|
||||
}
|
||||
|
||||
static inline void wpabuf_put_be16(struct wpabuf *buf, u16 data)
|
||||
{
|
||||
u8 *pos = (u8 *) wpabuf_put(buf, 2);
|
||||
|
@ -151,6 +157,12 @@ static inline void wpabuf_put_be32(struct wpabuf *buf, u32 data)
|
|||
WPA_PUT_BE32(pos, data);
|
||||
}
|
||||
|
||||
static inline void wpabuf_put_be64(struct wpabuf *buf, u64 data)
|
||||
{
|
||||
u8 *pos = (u8 *) wpabuf_put(buf, 8);
|
||||
WPA_PUT_BE64(pos, data);
|
||||
}
|
||||
|
||||
static inline void wpabuf_put_data(struct wpabuf *buf, const void *data,
|
||||
size_t len)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue