2016-10-04 20:02:44 +00:00
|
|
|
|
|
|
|
/** \addtogroup netsocket */
|
|
|
|
/** @{*/
|
2016-05-27 04:54:05 +00:00
|
|
|
/* EthInterface
|
2016-04-05 14:30:31 +00:00
|
|
|
* Copyright (c) 2015 ARM Limited
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2016-05-27 04:54:05 +00:00
|
|
|
#ifndef ETH_INTERFACE_H
|
|
|
|
#define ETH_INTERFACE_H
|
2016-04-05 14:30:31 +00:00
|
|
|
|
2016-09-30 23:32:06 +00:00
|
|
|
#include "netsocket/NetworkInterface.h"
|
2016-07-19 22:12:22 +00:00
|
|
|
|
2016-04-05 14:30:31 +00:00
|
|
|
|
2016-05-27 04:54:05 +00:00
|
|
|
/** EthInterface class
|
2016-04-19 22:51:51 +00:00
|
|
|
*
|
|
|
|
* Common interface that is shared between ethernet hardware.
|
2016-04-05 14:30:31 +00:00
|
|
|
*/
|
2016-05-27 04:54:05 +00:00
|
|
|
class EthInterface : public NetworkInterface
|
2016-04-05 14:30:31 +00:00
|
|
|
{
|
|
|
|
};
|
|
|
|
|
2016-07-19 22:12:22 +00:00
|
|
|
|
2016-04-05 14:30:31 +00:00
|
|
|
#endif
|
2016-10-04 20:02:44 +00:00
|
|
|
|
|
|
|
/** @}*/
|