mbed Phone Platform UDP to DAC/ADC test

Dependencies:   mbed

Committer:
okini3939
Date:
Wed Dec 01 14:35:05 2010 +0000
Revision:
0:c0c1269a8f51

        

Who changed what in which revision?

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