2016-03-04 20:23:14 +01:00
|
|
|
#ifndef __LW_H
|
|
|
|
#define __LW_H
|
|
|
|
|
2016-03-05 21:49:01 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
2016-03-28 10:45:37 +02:00
|
|
|
#include "conn.h"
|
2016-03-05 21:49:01 +01:00
|
|
|
#include "bstr.h"
|
|
|
|
|
|
|
|
|
2016-03-28 10:45:37 +02:00
|
|
|
|
2016-03-04 20:23:14 +01:00
|
|
|
/**
|
|
|
|
* @defgroup LW LWAPP Functions
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2016-03-04 20:30:36 +01:00
|
|
|
/**
|
|
|
|
* Put a byte to to an output buffer
|
|
|
|
*
|
|
|
|
* @param dst destination buffer
|
|
|
|
* @param b byte to put
|
|
|
|
* @return 1 (number of bytes put)
|
|
|
|
*/
|
2016-03-04 20:23:14 +01:00
|
|
|
#define lw_put_byte(dst,b) \
|
|
|
|
(*(dst)=b,1)
|
|
|
|
|
2016-03-04 20:30:36 +01:00
|
|
|
/**
|
|
|
|
* Put a word to to an output buffer. The word
|
|
|
|
* is converted to network byte order.
|
|
|
|
*
|
|
|
|
* @param dst destination buffer
|
|
|
|
* @param w word to put
|
|
|
|
* @return 2 (number of bytes put)
|
|
|
|
*/
|
2016-03-04 20:23:14 +01:00
|
|
|
#define lw_put_word(dst,w)\
|
|
|
|
(*((uint16_t*)(dst)) = htons(w),2)
|
|
|
|
|
2016-03-04 20:30:36 +01:00
|
|
|
/**
|
|
|
|
* Put a dword to to an output buffer. The dword
|
|
|
|
* is converted to network byte order.
|
|
|
|
*
|
|
|
|
* @param dst destination buffer
|
|
|
|
* @param dw dword to put
|
|
|
|
* @return 4 (number of bytes put)
|
|
|
|
*/
|
2016-03-04 20:23:14 +01:00
|
|
|
#define lw_put_dword(dst,dw)\
|
|
|
|
(*((uint32_t*)(dst)) = htonl(dw),4)
|
|
|
|
|
2016-03-11 19:46:49 +01:00
|
|
|
/**
|
|
|
|
* Same as #lw_set_byte, but w/o return value
|
|
|
|
*/
|
2016-03-04 20:23:14 +01:00
|
|
|
#define lw_set_byte(dst,b) \
|
|
|
|
(*(dst)=b);
|
|
|
|
|
2016-03-11 19:46:49 +01:00
|
|
|
/**
|
|
|
|
* Same as #lw_set_word, but no return value
|
|
|
|
*/
|
2016-03-04 20:23:14 +01:00
|
|
|
#define lw_set_word(dst,b) \
|
|
|
|
(*((uint16_t*)(dst)) = htons(w))
|
|
|
|
|
2016-03-05 23:10:35 +01:00
|
|
|
/**
|
|
|
|
* Same as #lw_put_dword, but the return value
|
|
|
|
* is unspecified.
|
|
|
|
*/
|
2016-03-04 20:23:14 +01:00
|
|
|
#define lw_set_dword(dst,dw)\
|
|
|
|
(*((uint32_t*)(dst)) = htonl(dw))
|
|
|
|
|
2016-03-11 19:46:49 +01:00
|
|
|
/**
|
|
|
|
* Read a byte from input buffer
|
|
|
|
* @param src Pointer to input buffer
|
|
|
|
* @return the byte red
|
|
|
|
*/
|
2016-03-04 20:23:14 +01:00
|
|
|
#define lw_get_byte(src)\
|
|
|
|
(*(uint8_t*)(src))
|
|
|
|
|
2016-03-11 19:46:49 +01:00
|
|
|
/**
|
|
|
|
* Read a word from input buffer and convert it from
|
|
|
|
* network format to local format.
|
|
|
|
* @param src Pointer to input buffer
|
|
|
|
* @return word
|
|
|
|
*/
|
2016-03-04 20:23:14 +01:00
|
|
|
#define lw_get_word(src) \
|
|
|
|
(ntohs( *((uint16_t*)(src))))
|
|
|
|
|
2016-03-11 19:46:49 +01:00
|
|
|
/**
|
|
|
|
* Read a dword from input buffer and convert it from
|
|
|
|
* network format to local
|
|
|
|
* @param src Pointer to input bufffer
|
|
|
|
* @return the dword red
|
|
|
|
*/
|
2016-03-04 20:23:14 +01:00
|
|
|
#define lw_get_dword(src) \
|
|
|
|
(ntohl( *((uint32_t*)(src))))
|
|
|
|
|
2016-03-04 21:01:38 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* the following functions are defined as static inline and not as
|
|
|
|
macro to avoid any side effects */
|
|
|
|
|
|
|
|
|
2018-03-02 13:36:03 +01:00
|
|
|
int lw_put_data(uint8_t*dst,const uint8_t*data,uint16_t len);
|
|
|
|
int lw_put_bstr(uint8_t * dst, const bstr_t b);
|
|
|
|
int lw_put_bstr16(uint8_t * dst, const bstr16_t b);
|
|
|
|
int lw_put_str(uint8_t*dst,const uint8_t *str);
|
|
|
|
int lw_put_elem_hdr(uint8_t *dst,uint8_t type,uint16_t len);
|
|
|
|
int lw_put_vendor(uint8_t * dst, uint32_t vendorid,
|
|
|
|
uint16_t elemid, uint16_t len);
|
2016-03-04 21:01:38 +01:00
|
|
|
|
2016-03-27 16:50:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup LWAPP_IN_HANDLER Input Handlers
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
int lw_in_vendor_specific(struct conn *conn, struct cw_action_in *a,
|
|
|
|
uint8_t * data, int len, struct sockaddr *from);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup LWAPP_MISC Misc Functions
|
|
|
|
* @{
|
|
|
|
*/
|
2016-03-05 10:24:08 +01:00
|
|
|
extern uint16_t lw_checksum(uint8_t *d,int len);
|
2016-03-12 03:57:43 +01:00
|
|
|
extern int lw_put_sockaddr(uint8_t *dst, struct sockaddr_storage *addr);
|
2016-03-27 16:50:06 +02:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
2016-03-05 10:24:08 +01:00
|
|
|
|
|
|
|
|
2016-03-04 20:23:14 +01:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|