mirror of https://github.com/ARMmbed/mbed-os.git
Rename Interface -> Stack
NetworkInterface -> NetworkStack EthernetInterface -> EthernetStack WiFiInterface -> WiFiStack CellularInterface -> CellularStack MeshInterface -> MeshStackpull/2231/head
parent
3850933298
commit
def3b408f0
|
|
@ -17,15 +17,15 @@
|
|||
#ifndef LWIP_INTERFACE_H
|
||||
#define LWIP_INTERFACE_H
|
||||
|
||||
#include "EthernetInterface.h"
|
||||
#include "EthernetStack.h"
|
||||
#include "rtos.h"
|
||||
#include "lwip/netif.h"
|
||||
|
||||
|
||||
/** LWIPInterface class
|
||||
* Implementation of the NetworkInterface for LWIP
|
||||
* Implementation of the NetworkStack for LWIP
|
||||
*/
|
||||
class LWIPInterface : public EthernetInterface
|
||||
class LWIPInterface : public EthernetStack
|
||||
{
|
||||
public:
|
||||
/** Start the interface
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/* EthernetInterface.h */
|
||||
/* EthernetStack.h */
|
||||
/* Copyright (C) 2012 mbed.org, MIT License
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software
|
||||
|
|
|
|||
Loading…
Reference in New Issue