mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-19 19:26:29 +00:00
34 lines
689 B
C++
34 lines
689 B
C++
/*
|
|
* \brief Utilities regarding layer 3 protocols in general
|
|
* \author Martin Stein
|
|
* \date 2016-08-19
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2016-2017 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU Affero General Public License version 3.
|
|
*/
|
|
|
|
#ifndef _L3_PROTOCOL_H_
|
|
#define _L3_PROTOCOL_H_
|
|
|
|
/* Genode includes */
|
|
#include <net/ipv4.h>
|
|
#include <base/stdint.h>
|
|
|
|
namespace Genode { class Cstring; }
|
|
|
|
namespace Net {
|
|
|
|
using L3_protocol = Ipv4_packet::Protocol;
|
|
|
|
char const *tcp_name();
|
|
char const *udp_name();
|
|
char const *icmp_name();
|
|
char const *l3_protocol_name(L3_protocol protocol);
|
|
}
|
|
|
|
#endif /* _L3_PROTOCOL_H_ */
|