Rename Interface -> Stack

NetworkInterface  -> NetworkStack
EthernetInterface -> EthernetStack
WiFiInterface     -> WiFiStack
CellularInterface -> CellularStack
MeshInterface     -> MeshStack
pull/2231/head
Christopher Haster 2016-04-19 18:07:43 -05:00
parent 3850933298
commit def3b408f0
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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