From def3b408f06c762785e5703d2602fad7ca1b5183 Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Tue, 19 Apr 2016 18:07:43 -0500 Subject: [PATCH] Rename Interface -> Stack NetworkInterface -> NetworkStack EthernetInterface -> EthernetStack WiFiInterface -> WiFiStack CellularInterface -> CellularStack MeshInterface -> MeshStack --- LWIPInterface.h | 6 +++--- eth_arch.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/LWIPInterface.h b/LWIPInterface.h index 4b0331c1db..5bb3a59221 100644 --- a/LWIPInterface.h +++ b/LWIPInterface.h @@ -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 diff --git a/eth_arch.h b/eth_arch.h index 1ff54b1d38..850d65e4ef 100644 --- a/eth_arch.h +++ b/eth_arch.h @@ -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