Dependencies:   mbed

Committer:
slowness
Date:
Tue Sep 06 18:10:36 2011 +0000
Revision:
0:cd4c47744fa1

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
slowness 0:cd4c47744fa1 1
slowness 0:cd4c47744fa1 2 /*
slowness 0:cd4c47744fa1 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
slowness 0:cd4c47744fa1 4
slowness 0:cd4c47744fa1 5 Permission is hereby granted, free of charge, to any person obtaining a copy
slowness 0:cd4c47744fa1 6 of this software and associated documentation files (the "Software"), to deal
slowness 0:cd4c47744fa1 7 in the Software without restriction, including without limitation the rights
slowness 0:cd4c47744fa1 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
slowness 0:cd4c47744fa1 9 copies of the Software, and to permit persons to whom the Software is
slowness 0:cd4c47744fa1 10 furnished to do so, subject to the following conditions:
slowness 0:cd4c47744fa1 11
slowness 0:cd4c47744fa1 12 The above copyright notice and this permission notice shall be included in
slowness 0:cd4c47744fa1 13 all copies or substantial portions of the Software.
slowness 0:cd4c47744fa1 14
slowness 0:cd4c47744fa1 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
slowness 0:cd4c47744fa1 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
slowness 0:cd4c47744fa1 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
slowness 0:cd4c47744fa1 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
slowness 0:cd4c47744fa1 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
slowness 0:cd4c47744fa1 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
slowness 0:cd4c47744fa1 21 THE SOFTWARE.
slowness 0:cd4c47744fa1 22 */
slowness 0:cd4c47744fa1 23
slowness 0:cd4c47744fa1 24 #ifndef NETIF_H
slowness 0:cd4c47744fa1 25 #define NETIF_H
slowness 0:cd4c47744fa1 26
slowness 0:cd4c47744fa1 27 #include "core/ipaddr.h"
slowness 0:cd4c47744fa1 28 /*
slowness 0:cd4c47744fa1 29 #include "nettcpsocket.h"
slowness 0:cd4c47744fa1 30 #include "netudpsocket.h"
slowness 0:cd4c47744fa1 31 #include "netdnsrequest.h"
slowness 0:cd4c47744fa1 32 */
slowness 0:cd4c47744fa1 33 class NetTcpSocket;
slowness 0:cd4c47744fa1 34 class NetUdpSocket;
slowness 0:cd4c47744fa1 35 class NetDnsRequest;
slowness 0:cd4c47744fa1 36
slowness 0:cd4c47744fa1 37 #if 0
slowness 0:cd4c47744fa1 38 enum NetifEvent
slowness 0:cd4c47744fa1 39 {
slowness 0:cd4c47744fa1 40 NETIF_CONNECTED, //Connected, can create & use sockets now
slowness 0:cd4c47744fa1 41 NETIF_DNSREPLY,
slowness 0:cd4c47744fa1 42 NETIF_DISCONNECTED
slowness 0:cd4c47744fa1 43 };
slowness 0:cd4c47744fa1 44 #endif
slowness 0:cd4c47744fa1 45
slowness 0:cd4c47744fa1 46 class NetIf
slowness 0:cd4c47744fa1 47 {
slowness 0:cd4c47744fa1 48 public:
slowness 0:cd4c47744fa1 49 NetIf();
slowness 0:cd4c47744fa1 50 virtual ~NetIf();
slowness 0:cd4c47744fa1 51 virtual NetTcpSocket* tcpSocket() = 0; //Create a new tcp socket
slowness 0:cd4c47744fa1 52 virtual NetUdpSocket* udpSocket() = 0; //Create a new udp socket
slowness 0:cd4c47744fa1 53 virtual void poll() = 0;
slowness 0:cd4c47744fa1 54 virtual NetDnsRequest* dnsRequest(const char* hostname) = 0; //Create a new NetDnsRequest object
slowness 0:cd4c47744fa1 55 virtual NetDnsRequest* dnsRequest(Host* pHost) = 0; //Create a new NetDnsRequest object
slowness 0:cd4c47744fa1 56
slowness 0:cd4c47744fa1 57 //!Returns the IP of the interface once it's connected
slowness 0:cd4c47744fa1 58 IpAddr getIp() const;
slowness 0:cd4c47744fa1 59
slowness 0:cd4c47744fa1 60 protected:
slowness 0:cd4c47744fa1 61 IpAddr m_ip;
slowness 0:cd4c47744fa1 62 };
slowness 0:cd4c47744fa1 63
slowness 0:cd4c47744fa1 64 #endif