File: InetMcastAddress.3cc

package info (click to toggle)
libcommoncpp2 1.0.13-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,740 kB
  • ctags: 2,860
  • sloc: cpp: 18,857; sh: 8,451; ansic: 1,546; makefile: 299; xml: 5
file content (68 lines) | stat: -rw-r--r-- 2,259 bytes parent folder | download
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
.TH "InetMcastAddress" 3 "19 Jul 2003" "CommonC++" \" -*- nroff -*-
.ad l
.nh
.SH NAME
InetMcastAddress \- A specialization of \fBInetAddress\fP that provides address validation for multicast addresses. A multicast network address. 
.SH SYNOPSIS
.br
.PP
\fC#include <socket.h>\fP
.PP
Inherits \fBInetAddress\fP.
.PP
.SS "Public Methods"

.in +1c
.ti -1c
.RI "\fBInetMcastAddress\fP ()"
.br
.RI "\fICreate an Internet Multicast Address object with an empty (0.0.0.0) address.\fP"
.ti -1c
.RI "\fBInetMcastAddress\fP (const struct in_addr address)"
.br
.RI "\fIConvert the system internet address data type (struct in_addr) into a Common C++ InetMcastAddress object.\fP"
.ti -1c
.RI "\fBInetMcastAddress\fP (const char *address)"
.br
.RI "\fIConvert a null terminated ASCII multicast address string (example: '224.0.0.1') or multicast name string (example: 'sap.mcast.net') directly into a Common C++ InetMcastAddress object.\fP"
.in -1c
.SH "DETAILED DESCRIPTION"
.PP 
A specialization of \fBInetAddress\fP that provides address validation for multicast addresses. A multicast network address.
.PP
Whenever its value changes the new value is checked to be in the range from 224.0.0.1 through 239.255.255.255. If it is not, an exception is thrown.
.PP
\fBAuthor: \fP
.in +1c
Federico Montesino <p5087@quintero.fie.us.es> 
.PP
.SH "CONSTRUCTOR & DESTRUCTOR DOCUMENTATION"
.PP 
.SS "InetMcastAddress::InetMcastAddress ()"
.PP
Create an Internet Multicast Address object with an empty (0.0.0.0) address.
.PP
.SS "InetMcastAddress::InetMcastAddress (const struct in_addr address)"
.PP
Convert the system internet address data type (struct in_addr) into a Common C++ InetMcastAddress object.
.PP
\fBParameters: \fP
.in +1c
.TP
\fB\fIaddress\fP\fP
struct of system used binary internet address. 
.SS "InetMcastAddress::InetMcastAddress (const char * address)"
.PP
Convert a null terminated ASCII multicast address string (example: '224.0.0.1') or multicast name string (example: 'sap.mcast.net') directly into a Common C++ InetMcastAddress object.
.PP
Works like \fBInetAddress\fP(const char*).
.PP
\fBParameters: \fP
.in +1c
.TP
\fB\fIaddress\fP\fP
null terminated C string. 

.SH "AUTHOR"
.PP 
Generated automatically by Doxygen for CommonC++ from the source code.