FBB::Hostname - Contains name/address info about a host
Contents
Bobcat
Bobcat is an acronym of `Brokken’s Own Base Classes And Templates’.
Bobcat Project Files
o https://fbb-git.gitlab.io/bobcat/: gitlab project page;
Debian Bobcat project files:
o libbobcat6: debian package containing the shared library, changelog and copyright note;
o libbobcat-dev: debian package containing the static library, headers, manual pages, and developer
info;
Bugs
None Reported.
Constructors
o Hostname():
The default constructor initializes an empty FBB::Hostname object.
o Hostname((std::stringconst&host)):
This constructor initializes an FBB::Hostname object from a string representing the name or dotted
decimal address of a host. An FBB::Exception object is thrown if the hostname information could
not be retrieved.
o Hostname(InetAddressconst&inetAddress):
This constructor initializes an FBB::Hostname object from an InetAddress object. An FBB::Exception
object is thrown if the hostname information could not be retrieved.
Copy and move constructors (and assignment operators) are available.
Copyright
This is free software, distributed under the terms of the GNU General Public License (GPL).
Description
FBB::Hostname objects inherit from Hostent, and offers information about a host, like Hostent. Apart from
being initialized by a hostname or host address, they can also be initialized by a FBB::InetAddress
object. Most of the functionality of an FBB::Hostname object is available through its parent-class
FBB::Hostent.
Example
#include <iostream>
#include <bobcat/hostname>
#include <bobcat/exception>
using namespace std;
using namespace FBB;
int main(int argc, char **argv)
{
while (true)
{
cout << "Enter name or address:\n";
string str;
if (!getline(cin, str))
return 0;
if (str == "")
break;
try
{
Hostname h(str);
cout << "Official name:\n";
cout << h.hostname() << endl;
cout << "Aliases:\n";
for (size_t idx = 0; idx < h.nAliases(); idx++)
cout << h.alias(idx) << " ";
cout << endl;
cout << "Adresses:\n";
for (size_t idx = 0; idx < h.nAddresses(); idx++)
cout << h.dottedDecimalAddress(idx) << " ";
cout << endl;
}
catch (exception const &err)
{
cout << err.what() << endl;
}
}
}
Files
bobcat/hostname - defines the class interface
Inherits From
FBB::Hostent
Member Functions
All members of FBB::Hostent are available, as FBB::Hostname inherits from this class. There are no
additional members.
Name
FBB::Hostname - Contains name/address info about a host
Namespace
FBB
All constructors, members, operators and manipulators, mentioned in this man-page, are defined in the
namespace FBB.
See Also
bobcat(7), hostent(3bobcat)
Synopsis
#include<bobcat/hostname>
Linking option: -lbobcat