]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/ipaddr.tex
sorting support for generic version (patch 1765087 from Bo)
[wxWidgets.git] / docs / latex / wx / ipaddr.tex
CommitLineData
be4bd463
JS
1% ----------------------------------------------------------------------------
2% CLASS: wxIPaddress
3% ----------------------------------------------------------------------------
4\section{\class{wxIPaddress}}\label{wxipaddress}
5
6wxIPaddress is an abstract base class for all internet protocol address
7objects. Currently, only \helpref{wxIPV4address}{wxipv4address}
8is implemented. An experimental implementation for IPV6, wxIPV6address,
9is being developed.
10
11\wxheading{Derived from}
12
13\helpref{wxSockAddress}{wxsockaddress}
14
15\wxheading{Include files}
16
17<wx/socket.h>
18
19% ----------------------------------------------------------------------------
20% MEMBERS
21% ----------------------------------------------------------------------------
22\latexignore{\rtfignore{\wxheading{Members}}}
23
24%
25% Hostname
26%
27
f0e8a2d0 28\membersection{wxIPaddress::Hostname}\label{wxipaddresshostname}
be4bd463
JS
29
30\func{virtual bool}{Hostname}{\param{const wxString\&}{ hostname}}
31
32Set the address to {\it hostname}, which can be a host name
33or an IP-style address in a format dependent on implementation.
34
35\wxheading{Return value}
36
37Returns true on success, false if something goes wrong
38(invalid hostname or invalid IP address).
39
be4bd463
JS
40\func{virtual wxString}{Hostname}{\void}
41
42Returns the hostname which matches the IP address.
43
44%
45% IPAddress
46%
47
f0e8a2d0 48\membersection{wxIPaddress::IPAddress}\label{wxipaddressipaddress}
be4bd463
JS
49
50\func{virtual wxString}{IPAddress}{\void}
51
52Returns a wxString containing the IP address.
53
54%
55% Service
56%
57
f0e8a2d0 58\membersection{wxIPaddress::Service}\label{wxipaddressservice}
be4bd463
JS
59
60\func{virtual bool}{Service}{\param{const wxString\&}{ service}}
61
62Set the port to that corresponding to the specified {\it service}.
63
64\wxheading{Return value}
65
66Returns true on success, false if something goes wrong
67(invalid service).
68
be4bd463
JS
69\func{virtual bool}{Service}{\param{unsigned short}{ service}}
70
71Set the port to that corresponding to the specified {\it service}.
72
73\wxheading{Return value}
74
75Returns true on success, false if something goes wrong
76(invalid service).
77
be4bd463
JS
78\func{virtual unsigned short}{Service}{\void}
79
80Returns the current service.
81
82%
83% AnyAddress
84%
85
86\membersection{wxIPaddress::AnyAddress}\label{wxIPaddressanyaddress}
87
88\func{virtual bool}{AnyAddress}{\void}
89
90Internally, this is the same as setting the IP address
91to {\bf INADDR\_ANY}.
92
93On IPV4 implementations, 0.0.0.0
94
95On IPV6 implementations, ::
96
97\wxheading{Return value}
98
99Returns true on success, false if something went wrong.
100
60edcf45
VZ
101%
102% BroadcastAddress
103%
104
0a82af9b 105\membersection{wxIPaddress::BroadcastAddress}\label{wxipaddressbroadcastaddress}
60edcf45
VZ
106
107\func{virtual bool}{BroadcastAddress}{\void}
108
109Internally, this is the same as setting the IP address
110to {\bf INADDR\_BROADCAST}.
111
112On IPV4 implementations, 255.255.255.255
113
114\wxheading{Return value}
115
116Returns true on success, false if something went wrong.
117
be4bd463
JS
118%
119% LocalHost
120%
121
0a82af9b 122\membersection{wxIPaddress::LocalHost}\label{wxipaddresslocalhost}
be4bd463
JS
123
124\func{virtual bool}{LocalHost}{\void}
125
126Set address to localhost.
127
128On IPV4 implementations, 127.0.0.1
129
130On IPV6 implementations, ::1
131
132\wxheading{Return value}
133
134Returns true on success, false if something went wrong.
135
0a82af9b 136\membersection{wxIPaddress::IsLocalHost}\label{wxipaddressislocalhost}
be4bd463
JS
137
138\func{virtual bool}{IsLocalHost}{\void}
139
140Determines if current address is set to localhost.
141
142\wxheading{Return value}
143
144Returns true if address is localhost, false if internet address.
145