Skip to content

Commit

Permalink
Merge pull request openwsn-berkeley#203 from openwsn-berkeley/develop…
Browse files Browse the repository at this point in the history
…_FW-413

FW-413. Fixed
  • Loading branch information
changtengfei committed Jul 1, 2015
2 parents d693d27 + cc87eb4 commit 86015df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openstack/03b-IPv6/icmpv6rpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ enum{
*/
static const uint8_t all_routers_multicast[] = {
0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1a
};

//=========================== typedef =========================================
Expand Down
2 changes: 1 addition & 1 deletion openstack/cross-layers/packetfunctions.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ bool packetfunctions_isAllRoutersMulticast(open_addr_t* address) {
address->addr_128b[12] == 0x00 &&
address->addr_128b[13] == 0x00 &&
address->addr_128b[14] == 0x00 &&
address->addr_128b[15] == 0x02
address->addr_128b[15] == 0x1a
) {
return TRUE;
}
Expand Down

0 comments on commit 86015df

Please sign in to comment.