diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2012-11-16 14:27:14 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2012-11-16 14:27:14 +0000 |
| commit | 039e634984f5dbcf1d9271b2e9a364b8a2c228c1 (patch) | |
| tree | ab359a95feed13af86c5062cb34809b420870d91 /qpid/cpp/include | |
| parent | 9d277505a7640b1f03039009f5dd41c9a3678e5c (diff) | |
| download | qpid-python-039e634984f5dbcf1d9271b2e9a364b8a2c228c1.tar.gz | |
QPID-3351: Provide ability to specify the network interfaces
Added functions to find machines network interface names and addresses
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1410362 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/include')
| -rw-r--r-- | qpid/cpp/include/qpid/sys/SystemInfo.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/qpid/cpp/include/qpid/sys/SystemInfo.h b/qpid/cpp/include/qpid/sys/SystemInfo.h index 7e5d372300..ec0e653881 100644 --- a/qpid/cpp/include/qpid/sys/SystemInfo.h +++ b/qpid/cpp/include/qpid/sys/SystemInfo.h @@ -53,6 +53,25 @@ QPID_COMMON_EXTERN bool getLocalHostname (Address &address); QPID_COMMON_EXTERN void getLocalIpAddresses (uint16_t port, std::vector<Address> &addrList); /** + * Get the names of all the network interfaces connected to + * this host. + * @param names Receives the list of interface names + */ +QPID_COMMON_EXTERN void getInterfaceNames(std::vector<std::string>& names ); + +/** + * Get strings for each of the IP addresses associated with a named network + * interface. + * If there is no interface of that name an empty list will be returned. + * + * @param interface The name of the network interface + * @param addresses The list of the strings for the IP addresses are pushed on the back of this parameter + * to get just the list you need to clear the vector before using it. + * @return true if an interface of the correct name was found, false otherwise + */ +QPID_COMMON_EXTERN bool getInterfaceAddresses(const std::string& interface, std::vector<std::string>& addresses); + +/** * Retrieve system identifiers and versions. This is information that can * generally be retrieved via POSIX uname(). * |
