Some code cleaning

FossilOrigin-Name: 4c8eab5d5ddb31a4d57d73c26b6c014b60b1f80904c87f69d3d76ec1ce2b1fb8
This commit is contained in:
7u83@mail.ru 2018-04-01 08:02:53 +00:00
parent 22630f5d81
commit 85ceb721d2
1 changed files with 2 additions and 8 deletions

View File

@ -4,7 +4,6 @@
#include <stdint.h>
#include <arpa/inet.h>
/*#include "conn.h"*/
#include "bstr.h"
@ -36,7 +35,7 @@
(*((uint16_t*)(dst)) = htons(w),2)
/**
* Put a dword to to an output buffer. The dword
* Put a dword to an output buffer. The dword
* is converted to network byte order.
*
* @param dst destination buffer
@ -102,18 +101,13 @@ int lw_put_vendor(uint8_t * dst, uint32_t vendorid,
uint16_t elemid, uint16_t len);
/*
int lw_in_vendor_specific(struct conn *conn, struct cw_action_in *a,
uint8_t * data, int len, struct sockaddr *from);
*/
extern uint16_t lw_checksum(uint8_t *d,int len);
extern int lw_put_sockaddr(uint8_t *dst, struct sockaddr_storage *addr);
uint16_t lw_checksum(uint8_t *d,int len);
#define lw_foreach_elem(d,msg,len) for(d=msg; d<msg+len; d=d+3+LWMSGELEM_GET_LEN(d))