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