mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-26 03:16:18 +00:00
Fixed a string literal being wrongly split over two lines.
This commit is contained in:
parent
93dfcdce93
commit
cea2c0bbc4
@ -350,8 +350,8 @@ ip_input(struct pbuf *p, struct netif *inp) {
|
|||||||
|
|
||||||
#if IP_REASSEMBLY
|
#if IP_REASSEMBLY
|
||||||
if ((IPH_OFFSET(iphdr) & htons(IP_OFFMASK | IP_MF)) != 0) {
|
if ((IPH_OFFSET(iphdr) & htons(IP_OFFMASK | IP_MF)) != 0) {
|
||||||
LWIP_DEBUGF(IP_DEBUG, ("IP packet is a fragment (id=0x%04x tot_len=%u len=%u MF=%u offset=%u),
|
LWIP_DEBUGF(IP_DEBUG, ("IP packet is a fragment (id=0x%04x tot_len=%u len=%u MF=%u offset=%u), calling ip_reass()\n",
|
||||||
calling ip_reass()\n", ntohs(IPH_ID(iphdr)), p->tot_len, ntohs(IPH_LEN(iphdr)), !!(IPH_OFFSET(iphdr) & htons(IP_MF)), (ntohs(IPH_OFFSET(iphdr)) & IP_OFFMASK)*8));
|
ntohs(IPH_ID(iphdr)), p->tot_len, ntohs(IPH_LEN(iphdr)), !!(IPH_OFFSET(iphdr) & htons(IP_MF)), (ntohs(IPH_OFFSET(iphdr)) & IP_OFFMASK)*8));
|
||||||
p = ip_reass(p);
|
p = ip_reass(p);
|
||||||
if (p == NULL) {
|
if (p == NULL) {
|
||||||
return ERR_OK;
|
return ERR_OK;
|
||||||
|
@ -63,11 +63,13 @@ static struct mem *ram_end;
|
|||||||
static u8_t ram[MEM_SIZE + sizeof(struct mem) + MEM_ALIGNMENT];
|
static u8_t ram[MEM_SIZE + sizeof(struct mem) + MEM_ALIGNMENT];
|
||||||
|
|
||||||
#define MIN_SIZE 12
|
#define MIN_SIZE 12
|
||||||
#define SIZEOF_STRUCT_MEM MEM_ALIGN_SIZE(sizeof(struct mem))
|
#if 0 /* this one does not align correctly for some, resulting in crashes */
|
||||||
/*#define SIZEOF_STRUCT_MEM (sizeof(struct mem) + \
|
#define SIZEOF_STRUCT_MEM (unsigned int)MEM_ALIGN_SIZE(sizeof(struct mem))
|
||||||
|
#else
|
||||||
|
#define SIZEOF_STRUCT_MEM (sizeof(struct mem) + \
|
||||||
(((sizeof(struct mem) % MEM_ALIGNMENT) == 0)? 0 : \
|
(((sizeof(struct mem) % MEM_ALIGNMENT) == 0)? 0 : \
|
||||||
(4 - (sizeof(struct mem) % MEM_ALIGNMENT))))*/
|
(4 - (sizeof(struct mem) % MEM_ALIGNMENT))))
|
||||||
|
#endif
|
||||||
|
|
||||||
static struct mem *lfree; /* pointer to the lowest free block */
|
static struct mem *lfree; /* pointer to the lowest free block */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user