Cleanup packetbuf: use rime attributes and addresses only when rime is enabled. Saves 32 byte per queuebuf in the non-rime case.
This commit is contained in:
parent
415506c3f6
commit
bd4233a953
5 changed files with 23 additions and 6 deletions
|
@ -260,7 +260,9 @@ uip_over_mesh_send(void)
|
|||
an underlying power-saving MAC layer knows that it should be
|
||||
waiting for an ACK. */
|
||||
if(BUF->proto == UIP_PROTO_TCP) {
|
||||
#if NETSTACK_CONF_WITH_RIME
|
||||
packetbuf_set_attr(PACKETBUF_ATTR_ERELIABLE, 1);
|
||||
#endif /* NETSTACK_CONF_WITH_RIME */
|
||||
packetbuf_set_attr(PACKETBUF_ATTR_RELIABLE, 1);
|
||||
/* packetbuf_set_attr(PACKETBUF_ATTR_PACKET_TYPE, PACKETBUF_ATTR_PACKET_TYPE_STREAM);*/
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue