1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-29 08:21:18 +01:00

Refactor destiny/in.h

This commit is contained in:
Martin Lenders 2013-09-20 15:13:18 +02:00
parent 446be54a24
commit e899970ecd
6 changed files with 9 additions and 6 deletions

View File

@ -33,6 +33,8 @@
#ifndef DESTINY_H
#define DESTINY_H
#include "destiny/in.h"
/**
* Initializes transport layer.
*

View File

@ -5,8 +5,8 @@
* Author: Oliver
*/
#ifndef IN_H_
#define IN_H_
#ifndef DESTINY_IN_H
#define DESTINY_IN_H
/*
* Constants and structures defined by the internet system,
* Per RFC 790, September 1981, and numerous additions.
@ -131,4 +131,4 @@
#define IN_LOOPBACKNET (127) /* official! */
#endif /* IN_H_ */
#endif /* DESTINY_IN_H */

View File

@ -23,7 +23,7 @@
#include "ipv6.h"
#include "tcp.h"
#include "udp.h"
#include "in.h"
#include "destiny/in.h"
#include "ipv6.h"
#include "cpu.h"

View File

@ -26,7 +26,7 @@
#include "tcp_timer.h"
#include "tcp_hc.h"
#include "tcp.h"
#include "in.h"
#include "destiny/in.h"
#include "socket.h"
#include "../net_help/net_help.h"
#include "../net_help/msg_help.h"

View File

@ -25,7 +25,7 @@
#include "ipv6.h"
#include "sixlowpan.h"
#include "socket.h"
#include "in.h"
#include "destiny/in.h"
#include "../net_help/net_help.h"
#include "../net_help/msg_help.h"

View File

@ -41,6 +41,7 @@
#include "icmp.h"
#include "ieee802154_frame.h"
#include "destiny/in.h"
#include "net_help.h"
#define IP_PROCESS_STACKSIZE (KERNEL_CONF_STACKSIZE_DEFAULT * 6)