mbed Phone Platform

Dependencies:   ulaw mbed ConfigFile

Committer:
okini3939
Date:
Sun Dec 26 15:49:07 2010 +0000
Revision:
1:0f82c574096f

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
okini3939 1:0f82c574096f 1
okini3939 1:0f82c574096f 2 /*
okini3939 1:0f82c574096f 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
okini3939 1:0f82c574096f 4
okini3939 1:0f82c574096f 5 Permission is hereby granted, free of charge, to any person obtaining a copy
okini3939 1:0f82c574096f 6 of this software and associated documentation files (the "Software"), to deal
okini3939 1:0f82c574096f 7 in the Software without restriction, including without limitation the rights
okini3939 1:0f82c574096f 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
okini3939 1:0f82c574096f 9 copies of the Software, and to permit persons to whom the Software is
okini3939 1:0f82c574096f 10 furnished to do so, subject to the following conditions:
okini3939 1:0f82c574096f 11
okini3939 1:0f82c574096f 12 The above copyright notice and this permission notice shall be included in
okini3939 1:0f82c574096f 13 all copies or substantial portions of the Software.
okini3939 1:0f82c574096f 14
okini3939 1:0f82c574096f 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
okini3939 1:0f82c574096f 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
okini3939 1:0f82c574096f 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
okini3939 1:0f82c574096f 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
okini3939 1:0f82c574096f 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
okini3939 1:0f82c574096f 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
okini3939 1:0f82c574096f 21 THE SOFTWARE.
okini3939 1:0f82c574096f 22 */
okini3939 1:0f82c574096f 23
okini3939 1:0f82c574096f 24 #ifndef IPADDR_H
okini3939 1:0f82c574096f 25 #define IPADDR_H
okini3939 1:0f82c574096f 26
okini3939 1:0f82c574096f 27 #include "netCfg.h"
okini3939 1:0f82c574096f 28 #if NET_LWIP_STACK
okini3939 1:0f82c574096f 29 typedef struct ip_addr ip_addr_t;
okini3939 1:0f82c574096f 30 #endif
okini3939 1:0f82c574096f 31
okini3939 1:0f82c574096f 32 #include "stdint.h"
okini3939 1:0f82c574096f 33
okini3939 1:0f82c574096f 34 ///IP Address container
okini3939 1:0f82c574096f 35 /**
okini3939 1:0f82c574096f 36 This class is a container for an IPv4 address.
okini3939 1:0f82c574096f 37 */
okini3939 1:0f82c574096f 38 class IpAddr //Basically a C++ frontend to ip_addr_t
okini3939 1:0f82c574096f 39 {
okini3939 1:0f82c574096f 40 public:
okini3939 1:0f82c574096f 41 #if NET_LWIP_STACK
okini3939 1:0f82c574096f 42 IpAddr(ip_addr_t* pIp);
okini3939 1:0f82c574096f 43 #endif
okini3939 1:0f82c574096f 44
okini3939 1:0f82c574096f 45 ///Initializes IP address with provided values
okini3939 1:0f82c574096f 46 IpAddr(uint8_t ip0, uint8_t ip1, uint8_t ip2, uint8_t ip3);
okini3939 1:0f82c574096f 47
okini3939 1:0f82c574096f 48 ///Initializes IP address with null values
okini3939 1:0f82c574096f 49 IpAddr();
okini3939 1:0f82c574096f 50
okini3939 1:0f82c574096f 51 #if NET_LWIP_STACK
okini3939 1:0f82c574096f 52 ip_addr_t getStruct() const;
okini3939 1:0f82c574096f 53 #endif
okini3939 1:0f82c574096f 54
okini3939 1:0f82c574096f 55 ///Returns IP address byte #
okini3939 1:0f82c574096f 56 uint8_t operator[](unsigned int i) const;
okini3939 1:0f82c574096f 57
okini3939 1:0f82c574096f 58 ///Compares too addresses
okini3939 1:0f82c574096f 59 /**
okini3939 1:0f82c574096f 60 @return true if the two addresses are equal
okini3939 1:0f82c574096f 61 */
okini3939 1:0f82c574096f 62 bool isEq(const IpAddr& b) const;
okini3939 1:0f82c574096f 63
okini3939 1:0f82c574096f 64 ///Compares too addresses
okini3939 1:0f82c574096f 65 /**
okini3939 1:0f82c574096f 66 @return true if the two addresses are equal
okini3939 1:0f82c574096f 67 */
okini3939 1:0f82c574096f 68 bool operator==(const IpAddr& b) const;
okini3939 1:0f82c574096f 69
okini3939 1:0f82c574096f 70 ///Compares too addresses
okini3939 1:0f82c574096f 71 /**
okini3939 1:0f82c574096f 72 @return true if the two addresses are different
okini3939 1:0f82c574096f 73 */
okini3939 1:0f82c574096f 74 bool operator!=(const IpAddr& b) const;
okini3939 1:0f82c574096f 75
okini3939 1:0f82c574096f 76 ///Checks whether the address is null
okini3939 1:0f82c574096f 77 /**
okini3939 1:0f82c574096f 78 @return true if the address is null
okini3939 1:0f82c574096f 79 */
okini3939 1:0f82c574096f 80 bool isNull() const;
okini3939 1:0f82c574096f 81
okini3939 1:0f82c574096f 82 ///Checks whether the address is a broadcast address
okini3939 1:0f82c574096f 83 /**
okini3939 1:0f82c574096f 84 @return true if the address is a broadcast address
okini3939 1:0f82c574096f 85 */
okini3939 1:0f82c574096f 86 bool isBroadcast() const;
okini3939 1:0f82c574096f 87
okini3939 1:0f82c574096f 88 ///Checks whether the address is a multicast address
okini3939 1:0f82c574096f 89 /**
okini3939 1:0f82c574096f 90 @return true if the address is a multicast address
okini3939 1:0f82c574096f 91 */
okini3939 1:0f82c574096f 92 bool isMulticast() const;
okini3939 1:0f82c574096f 93
okini3939 1:0f82c574096f 94 private:
okini3939 1:0f82c574096f 95 uint8_t m_ip[4];
okini3939 1:0f82c574096f 96 };
okini3939 1:0f82c574096f 97
okini3939 1:0f82c574096f 98 #endif