Dependents:   RTnoV3 RTnoV3_LED RTnoV3_Template RTnoV3_ADC ... more

Committer:
sherckuith
Date:
Sat Dec 31 11:25:27 2011 +0000
Revision:
0:479ce5546098
Ethernet

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sherckuith 0:479ce5546098 1
sherckuith 0:479ce5546098 2 /*
sherckuith 0:479ce5546098 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
sherckuith 0:479ce5546098 4
sherckuith 0:479ce5546098 5 Permission is hereby granted, free of charge, to any person obtaining a copy
sherckuith 0:479ce5546098 6 of this software and associated documentation files (the "Software"), to deal
sherckuith 0:479ce5546098 7 in the Software without restriction, including without limitation the rights
sherckuith 0:479ce5546098 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
sherckuith 0:479ce5546098 9 copies of the Software, and to permit persons to whom the Software is
sherckuith 0:479ce5546098 10 furnished to do so, subject to the following conditions:
sherckuith 0:479ce5546098 11
sherckuith 0:479ce5546098 12 The above copyright notice and this permission notice shall be included in
sherckuith 0:479ce5546098 13 all copies or substantial portions of the Software.
sherckuith 0:479ce5546098 14
sherckuith 0:479ce5546098 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
sherckuith 0:479ce5546098 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
sherckuith 0:479ce5546098 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
sherckuith 0:479ce5546098 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
sherckuith 0:479ce5546098 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
sherckuith 0:479ce5546098 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
sherckuith 0:479ce5546098 21 THE SOFTWARE.
sherckuith 0:479ce5546098 22 */
sherckuith 0:479ce5546098 23
sherckuith 0:479ce5546098 24 #ifndef HOST_H
sherckuith 0:479ce5546098 25 #define HOST_H
sherckuith 0:479ce5546098 26
sherckuith 0:479ce5546098 27 #include "ipaddr.h"
sherckuith 0:479ce5546098 28 #include <string.h>
sherckuith 0:479ce5546098 29
sherckuith 0:479ce5546098 30 ///Host information container
sherckuith 0:479ce5546098 31 /**
sherckuith 0:479ce5546098 32 This class is a container for data relative to a connection:
sherckuith 0:479ce5546098 33 - IP Address
sherckuith 0:479ce5546098 34 - Port number
sherckuith 0:479ce5546098 35 - Host Name
sherckuith 0:479ce5546098 36 */
sherckuith 0:479ce5546098 37 class Host
sherckuith 0:479ce5546098 38 {
sherckuith 0:479ce5546098 39 public:
sherckuith 0:479ce5546098 40 ///Initiliazes host with null values
sherckuith 0:479ce5546098 41 Host() : m_ip(0,0,0,0), m_port(0), m_name(NULL)
sherckuith 0:479ce5546098 42 {
sherckuith 0:479ce5546098 43
sherckuith 0:479ce5546098 44 }
sherckuith 0:479ce5546098 45
sherckuith 0:479ce5546098 46 ///Initializes host
sherckuith 0:479ce5546098 47 Host(const IpAddr& ip, const int& port, const char* name="" ) : m_ip(ip), m_port(port), m_name(NULL)
sherckuith 0:479ce5546098 48 {
sherckuith 0:479ce5546098 49 setName(name);
sherckuith 0:479ce5546098 50 }
sherckuith 0:479ce5546098 51
sherckuith 0:479ce5546098 52 ~Host()
sherckuith 0:479ce5546098 53 {
sherckuith 0:479ce5546098 54 if(m_name)
sherckuith 0:479ce5546098 55 {
sherckuith 0:479ce5546098 56 delete[] m_name;
sherckuith 0:479ce5546098 57 }
sherckuith 0:479ce5546098 58 }
sherckuith 0:479ce5546098 59
sherckuith 0:479ce5546098 60 ///Returns IP address
sherckuith 0:479ce5546098 61 const IpAddr& getIp() const
sherckuith 0:479ce5546098 62 {
sherckuith 0:479ce5546098 63 return m_ip;
sherckuith 0:479ce5546098 64 }
sherckuith 0:479ce5546098 65
sherckuith 0:479ce5546098 66 ///Returns port number
sherckuith 0:479ce5546098 67 const int& getPort() const
sherckuith 0:479ce5546098 68 {
sherckuith 0:479ce5546098 69 return m_port;
sherckuith 0:479ce5546098 70 }
sherckuith 0:479ce5546098 71
sherckuith 0:479ce5546098 72 ///Returns host name
sherckuith 0:479ce5546098 73 const char* getName() const
sherckuith 0:479ce5546098 74 {
sherckuith 0:479ce5546098 75 return m_name;
sherckuith 0:479ce5546098 76 }
sherckuith 0:479ce5546098 77
sherckuith 0:479ce5546098 78 ///Sets IP address
sherckuith 0:479ce5546098 79 void setIp(const IpAddr& ip)
sherckuith 0:479ce5546098 80 {
sherckuith 0:479ce5546098 81 m_ip = ip;
sherckuith 0:479ce5546098 82 }
sherckuith 0:479ce5546098 83
sherckuith 0:479ce5546098 84 ///Sets port number
sherckuith 0:479ce5546098 85 void setPort(int port)
sherckuith 0:479ce5546098 86 {
sherckuith 0:479ce5546098 87 m_port = port;
sherckuith 0:479ce5546098 88 }
sherckuith 0:479ce5546098 89
sherckuith 0:479ce5546098 90 ///Sets host name
sherckuith 0:479ce5546098 91 void setName(const char* name)
sherckuith 0:479ce5546098 92 {
sherckuith 0:479ce5546098 93 if(m_name)
sherckuith 0:479ce5546098 94 delete[] m_name;
sherckuith 0:479ce5546098 95 int len = strlen(name);
sherckuith 0:479ce5546098 96 if(len)
sherckuith 0:479ce5546098 97 {
sherckuith 0:479ce5546098 98 m_name = new char[len+1];
sherckuith 0:479ce5546098 99 strcpy(m_name, name);
sherckuith 0:479ce5546098 100 }
sherckuith 0:479ce5546098 101 }
sherckuith 0:479ce5546098 102
sherckuith 0:479ce5546098 103 private:
sherckuith 0:479ce5546098 104 IpAddr m_ip;
sherckuith 0:479ce5546098 105 int m_port;
sherckuith 0:479ce5546098 106 char* m_name;
sherckuith 0:479ce5546098 107 };
sherckuith 0:479ce5546098 108
sherckuith 0:479ce5546098 109 #endif