Renamed the rimebuf module to packetbuf to signal that the module is used outside of a pure Rime context (e.g., the sicslowpan code uses it).

This commit is contained in:
adamdunkels 2009-03-12 21:58:20 +00:00
parent 932fc9f748
commit 65eb5fd4e8
90 changed files with 690 additions and 687 deletions

View file

@ -11,7 +11,7 @@ AUTOSTART_PROCESSES(&example_polite_process);
static void
recv(struct polite_conn *c)
{
printf("recv '%s'\n", (char *)rimebuf_dataptr());
printf("recv '%s'\n", (char *)packetbuf_dataptr());
}
static void
sent(struct polite_conn *c)
@ -39,7 +39,7 @@ PROCESS_THREAD(example_polite_process, ev, data)
static struct etimer et;
etimer_set(&et, CLOCK_SECOND * 4);
PROCESS_WAIT_EVENT_UNTIL(etimer_expired(&et));
rimebuf_copyfrom("Hej", 4);
packetbuf_copyfrom("Hej", 4);
polite_send(&c, CLOCK_SECOND * 4, 4);