\r\n

51Degrees Device Detection C/C++  4.4

A device detection library that is used natively or by 51Degrees products

IpAddress.hpp

1 /* *********************************************************************
2  * This Original Work is copyright of 51 Degrees Mobile Experts Limited.
3  * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House,
4  * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU.
5  *
6  * This Original Work is licensed under the European Union Public Licence
7  * (EUPL) v.1.2 and is subject to its terms as set out below.
8  *
9  * If a copy of the EUPL was not distributed with this file, You can obtain
10  * one at https://opensource.org/licenses/EUPL-1.2.
11  *
12  * The 'Compatible Licences' set out in the Appendix to the EUPL (as may be
13  * amended by the European Commission) shall be deemed incompatible for
14  * the purposes of the Work and the provisions of the compatibility
15  * clause in Article 5 of the EUPL shall not apply.
16  *
17  * If using the Work as, or as part of, a network application, by
18  * including the attribution notice(s) required under Article 5 of the EUPL
19  * in the end user terms of the application under an appropriate heading,
20  * such notice(s) shall fulfill the requirements of that article.
21  * ********************************************************************* */
22 
23 #ifndef FIFTYONE_DEGREES_IP_ADDRESS_HPP
24 #define FIFTYONE_DEGREES_IP_ADDRESS_HPP
25 
26 #include "ip.h"
27 
28 namespace FiftyoneDegrees {
29  namespace IpIntelligence {
38  class IpAddress {
39  public:
49  IpAddress();
50 
58  IpAddress(const unsigned char ipAddressData[],
59  fiftyoneDegreesEvidenceIpType addressType);
60 
67  IpAddress(const char *ipAddressString);
68 
80  const unsigned char *getIpAddress() const {
81  return (const unsigned char *)ipAddress;
82  };
83 
96  void getCopyOfIpAddress(unsigned char copy[], uint32_t size) const;
97 
102  fiftyoneDegreesEvidenceIpType getType() const { return type; };
103 
108  private:
114  void init(const unsigned char *ipAddressData,
115  fiftyoneDegreesEvidenceIpType addressType);
116 
120  unsigned char ipAddress[FIFTYONE_DEGREES_IPV6_LENGTH];
121  };
122  }
123 }
124 
125 #endif
const unsigned char * getIpAddress() const
Get the IP address byte array.
Definition: IpAddress.hpp:80
51Degrees base namespace.
Definition: ComponentMetaDataBuilderHash.hpp:33
fiftyoneDegreesEvidenceIpType getType() const
Get the type of the IP address.
Definition: IpAddress.hpp:102
IpAddress()
Construct a default instance with an invalid IP address.
void getCopyOfIpAddress(unsigned char copy[], uint32_t size) const
Returns a copy of the IP address byte array This is used mainly for SWIG so that other language can g...
fiftyoneDegreesEvidenceIpType
Enum indicating the type of IP address.
Definition: ip.h:59
A class which represents an IP address.
Definition: IpAddress.hpp:38
#define FIFTYONE_DEGREES_IPV6_LENGTH
The number of bytes in an Ipv6 Address.
Definition: ip.h:54