1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
.TH "NetworkDeviceInfo" 3 "19 Jul 2003" "CommonC++" \" -*- nroff -*-
.ad l
.nh
.SH NAME
NetworkDeviceInfo \- Network device information class.
.SH SYNOPSIS
.br
.PP
\fC#include <network.h>\fP
.PP
.SS "Public Methods"
.in +1c
.ti -1c
.RI "\fBNetworkDeviceInfo\fP (const NetworkDeviceInfo &ndi)"
.br
.ti -1c
.RI "\fB~NetworkDeviceInfo\fP ()"
.br
.ti -1c
.RI "const std::string & \fBname\fP () const"
.br
.RI "\fIReturns the Name of the network device.\fP"
.ti -1c
.RI "const \fBInetHostAddress\fP & \fBaddress\fP () const"
.br
.RI "\fIReturns the Address of the network device.\fP"
.ti -1c
.RI "const \fBBroadcastAddress\fP & \fBbroadcast\fP () const"
.br
.RI "\fIReturns the Broadcast address of the network device.\fP"
.ti -1c
.RI "const \fBInetMaskAddress\fP & \fBnetmask\fP () const"
.br
.RI "\fIReturns the Netmask of the network device.\fP"
.ti -1c
.RI "const int \fBmtu\fP () const"
.br
.RI "\fIReturns the MTU.\fP"
.in -1c
.SS "Protected Methods"
.in +1c
.ti -1c
.RI "\fBNetworkDeviceInfo\fP (const std::string &name, const \fBInetHostAddress\fP &addr, const \fBBroadcastAddress\fP &broadcast, const \fBInetMaskAddress\fP &netmask, int mtu)"
.br
.in -1c
.SH "DETAILED DESCRIPTION"
.PP
Network device information class.
.PP
This class is used to hold various informations about a TCP/IP network device. Which can be obtained by a call to enumNetworkDevices()
.PP
\fBAuthor: \fP
.in +1c
Christian Prochnow <cproch@seculogix.de>
.PP
.SH "CONSTRUCTOR & DESTRUCTOR DOCUMENTATION"
.PP
.SS "NetworkDeviceInfo::NetworkDeviceInfo (const std::string & name, const \fBInetHostAddress\fP & addr, const \fBBroadcastAddress\fP & broadcast, const \fBInetMaskAddress\fP & netmask, int mtu)\fC [protected]\fP"
.PP
.SS "NetworkDeviceInfo::NetworkDeviceInfo (const NetworkDeviceInfo & ndi)"
.PP
.SS "NetworkDeviceInfo::~NetworkDeviceInfo ()"
.PP
.SH "MEMBER FUNCTION DOCUMENTATION"
.PP
.SS "const \fBInetHostAddress\fP& NetworkDeviceInfo::address () const\fC [inline]\fP"
.PP
Returns the Address of the network device.
.PP
.SS "const \fBBroadcastAddress\fP& NetworkDeviceInfo::broadcast () const\fC [inline]\fP"
.PP
Returns the Broadcast address of the network device.
.PP
.SS "const int NetworkDeviceInfo::mtu () const\fC [inline]\fP"
.PP
Returns the MTU.
.PP
.SS "const std::string& NetworkDeviceInfo::name () const\fC [inline]\fP"
.PP
Returns the Name of the network device.
.PP
.SS "const \fBInetMaskAddress\fP& NetworkDeviceInfo::netmask () const\fC [inline]\fP"
.PP
Returns the Netmask of the network device.
.PP
.SH "AUTHOR"
.PP
Generated automatically by Doxygen for CommonC++ from the source code.
|