From 17a721a7e45417a88e7fe50c6a72d51df8bcf673 Mon Sep 17 00:00:00 2001 From: joxe Date: Wed, 17 Mar 2010 20:57:25 +0000 Subject: [PATCH] fixed buggy define for Traffic class and Flowlabel compression --- core/net/sicslowpan.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/net/sicslowpan.h b/core/net/sicslowpan.h index 23a8a17e2..77ccaa240 100644 --- a/core/net/sicslowpan.h +++ b/core/net/sicslowpan.h @@ -33,7 +33,7 @@ * * This file is part of the Contiki operating system. * - * $Id: sicslowpan.h,v 1.11 2010/03/17 12:08:59 joxe Exp $ + * $Id: sicslowpan.h,v 1.12 2010/03/17 20:57:25 joxe Exp $ */ /** * \file @@ -102,8 +102,8 @@ * Values of fields within the IPHC encoding first byte * (C stands for compressed and I for inline) */ -#define SICSLOWPAN_IPHC_TC_C 0x10 -#define SICSLOWPAN_IPHC_FL_C 0x08 +#define SICSLOWPAN_IPHC_FL_C 0x10 +#define SICSLOWPAN_IPHC_TC_C 0x08 #define SICSLOWPAN_IPHC_NH_C 0x04 #define SICSLOWPAN_IPHC_TTL_1 0x01 #define SICSLOWPAN_IPHC_TTL_64 0x02