net-ping 1.7.4-universal-mingw32 → 1.7.5-universal-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +6 -14
- data/CHANGES +340 -334
- data/Gemfile +2 -2
- data/MANIFEST +25 -24
- data/README +66 -62
- data/Rakefile +94 -94
- data/doc/ping.txt +246 -246
- data/examples/example_pingexternal.rb +16 -16
- data/examples/example_pinghttp.rb +22 -22
- data/examples/example_pingtcp.rb +16 -16
- data/examples/example_pingudp.rb +12 -12
- data/lib/net/ping.rb +17 -17
- data/lib/net/ping/external.rb +101 -93
- data/lib/net/ping/http.rb +188 -188
- data/lib/net/ping/icmp.rb +179 -179
- data/lib/net/ping/ping.rb +89 -89
- data/lib/net/ping/tcp.rb +107 -102
- data/lib/net/ping/udp.rb +119 -119
- data/lib/net/ping/wmi.rb +118 -118
- data/net-ping.gemspec +39 -39
- data/test/test_net_ping.rb +35 -35
- data/test/test_net_ping_external.rb +143 -143
- data/test/test_net_ping_http.rb +240 -240
- data/test/test_net_ping_icmp.rb +186 -186
- data/test/test_net_ping_tcp.rb +105 -105
- data/test/test_net_ping_udp.rb +119 -119
- data/test/test_net_ping_wmi.rb +81 -81
- metadata +22 -20
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
metadata.gz: !binary |-
|
9
|
-
YjY1Mzk3NGExZWQ4N2NhNDVhY2NhNjMxMTU3ZjZmODU5NDEyN2E5ZTRmZjMy
|
10
|
-
MTliMzc0YjEwNDY3MjU5MGYzZmZhMjlkMjJlYmM0ZjE3ZWZjNWEwNDBhZjJj
|
11
|
-
OGRlMzAzMjhhNTM3YTM2ZDYyODI3OWY5NTAxMjAwNzk2MjFjMWM=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
MmJjN2E0OTBlZDU3ZTdmMTkyMTZmOTIzYzFiMjgwZjRmYzM0MTk1NzFlMzEw
|
14
|
-
N2FhYTE1N2U5ZGI3NjA2ZDNlMDFkMDkzNWE3N2RkZWRhOWFlZDQwMDBjMzY4
|
15
|
-
YWM0NDIwMzkwNzJlZDc2ZjNmOTQ2ZmNmYzY2YmY1ODhmNWE3OWQ=
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 76094b959b0147e022534d183b4589dea46af3e3
|
4
|
+
data.tar.gz: b15a4a418e5c43b7d14b92b5bdee5015c697a807
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 7bed079dbbeeab53dd88f1efc8d876629a4ae8d4f80b003ce36320bf180510ee24af29ca38c9c3aa14d8364dc3fdd5532a20abbcfbf1a956889be0708acbbd87
|
7
|
+
data.tar.gz: 8822d0928c89bca134bf1ec39c9373c04cef29044a0ef2b9aeca3b907e4c326eaddb69ca63356cb0522d52b7d611136beb4ad9fe8fe5c2354c498ebd6eff9847
|
data/CHANGES
CHANGED
@@ -1,334 +1,340 @@
|
|
1
|
-
== 1.7.
|
2
|
-
*
|
3
|
-
|
4
|
-
|
5
|
-
spot.
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
*
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
*
|
17
|
-
|
18
|
-
|
19
|
-
spot.
|
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
|
-
|
93
|
-
|
94
|
-
*
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
*
|
101
|
-
|
102
|
-
|
103
|
-
== 1.
|
104
|
-
*
|
105
|
-
|
106
|
-
* The
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
*
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
*
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
*
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
*
|
151
|
-
|
152
|
-
|
153
|
-
* The
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
*
|
165
|
-
|
166
|
-
|
167
|
-
*
|
168
|
-
*
|
169
|
-
|
170
|
-
* The
|
171
|
-
*
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
*
|
176
|
-
*
|
177
|
-
*
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
*
|
183
|
-
|
184
|
-
|
185
|
-
*
|
186
|
-
|
187
|
-
|
188
|
-
*
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
*
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
*
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
*
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
it is
|
223
|
-
|
224
|
-
*
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
*
|
231
|
-
* Added
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
*
|
237
|
-
|
238
|
-
|
239
|
-
*
|
240
|
-
|
241
|
-
|
242
|
-
*
|
243
|
-
|
244
|
-
* The
|
245
|
-
|
246
|
-
*
|
247
|
-
|
248
|
-
*
|
249
|
-
the
|
250
|
-
*
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
*
|
257
|
-
|
258
|
-
== 1.1.
|
259
|
-
* Fixed a bug in
|
260
|
-
|
261
|
-
|
262
|
-
*
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
*
|
270
|
-
|
271
|
-
|
272
|
-
*
|
273
|
-
|
274
|
-
== 0.
|
275
|
-
*
|
276
|
-
*
|
277
|
-
|
278
|
-
*
|
279
|
-
|
280
|
-
|
281
|
-
*
|
282
|
-
*
|
283
|
-
|
284
|
-
*
|
285
|
-
|
286
|
-
|
287
|
-
*
|
288
|
-
*
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
*
|
293
|
-
|
294
|
-
*
|
295
|
-
*
|
296
|
-
|
297
|
-
== 0.
|
298
|
-
* Fixed
|
299
|
-
|
300
|
-
*
|
301
|
-
*
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
*
|
306
|
-
|
307
|
-
|
308
|
-
*
|
309
|
-
|
310
|
-
|
311
|
-
*
|
312
|
-
|
313
|
-
== 0.2.
|
314
|
-
*
|
315
|
-
|
316
|
-
*
|
317
|
-
*
|
318
|
-
|
319
|
-
|
320
|
-
*
|
321
|
-
|
322
|
-
|
323
|
-
* Added
|
324
|
-
*
|
325
|
-
*
|
326
|
-
*
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
*
|
332
|
-
|
333
|
-
|
334
|
-
*
|
1
|
+
== 1.7.5 - 2-Nov-2014
|
2
|
+
* Added packet count and intervals for external pings. Thanks go to Jack Hayter
|
3
|
+
for the patch.
|
4
|
+
* No longer report closed TCP port as active. Thanks go to Joshua Yanovski for
|
5
|
+
the spot and patch.
|
6
|
+
|
7
|
+
== 1.7.4 - 16-Apr-2014
|
8
|
+
* Remove the Timeout block for the Ping::HTTP class because it wasn't working
|
9
|
+
with JRuby. Instead, we use the builtin open_timeout and read_timeout
|
10
|
+
accessors on the underlying http request. Thanks go to Ian Heggie for the
|
11
|
+
spot.
|
12
|
+
* The Ping::HTTP#ping? more robustly parses out the port from the uri argument
|
13
|
+
if provided. In addition, the default port is again set back to 80 as a
|
14
|
+
last resort in the constructor.
|
15
|
+
* Added timeout and port tests for the Ping::HTTP class.
|
16
|
+
* If a host is unreachable explicitly set the result to false regardless of
|
17
|
+
the actual exit status. This appears to only affect Windows 7 and later.
|
18
|
+
* Reinstated the Timeout block for the Ping::ICMP class. Without it, threaded
|
19
|
+
pings could end up in an infinite loop. Thanks go to muirmanders for the spot.
|
20
|
+
|
21
|
+
== 1.7.3 - 3-Apr-2014
|
22
|
+
* Removed the Timeout block for the Ping::External class as it apparently
|
23
|
+
hasn't worked with open3 for some time. Instead, it now uses your command
|
24
|
+
line ping's timeout switch. Thanks go to Andrea Bernardo Ciddio for the
|
25
|
+
spot.
|
26
|
+
* Made ICMP pings thread safe. I think.
|
27
|
+
* Removed a redundant Timeout block in the Ping::ICMP class.
|
28
|
+
* If an ICMP ping times out, the exception attribute is set to "timeout".
|
29
|
+
* Added explicit support for AIX for the Ping::External class.
|
30
|
+
* Bumped minimum required Ruby version to 1.9.3.
|
31
|
+
|
32
|
+
== 1.7.2 - 21-Jan-2014
|
33
|
+
* Fixed a bug in the Ping::HTTP constructor where it was not honoring the
|
34
|
+
port if provided as the second argument. Thanks go to Florian Anderiasch
|
35
|
+
for the spot.
|
36
|
+
* Removed win32-open3 require in the Ping::External class since it isn't
|
37
|
+
needed in Ruby 1.9.x or later.
|
38
|
+
* Refactored the Ping::External class so that it checks the exit status rather
|
39
|
+
than try to parse output. Thanks go to Miguel Tubia for the suggestion.
|
40
|
+
* Dropped explicit support for Windows XP.
|
41
|
+
* Removed reference to win32-open3 in README.
|
42
|
+
|
43
|
+
== 1.7.1 - 26-Sep-2013
|
44
|
+
* Fixed a bug in the Ping::TCP class where it could return nil instead
|
45
|
+
of false. Thanks go to Grandy Nguyen for the patch.
|
46
|
+
|
47
|
+
== 1.7.0 - 25-Aug-2013
|
48
|
+
* Now requires Ruby 1.9.x or later.
|
49
|
+
* Replaced the main ping code for the Ping::TCP class. The timeout module
|
50
|
+
really doesn't work very well with sockets, and so a raw socket approach
|
51
|
+
combined with IO.select is now used instead.
|
52
|
+
* Updates to the doc/ping.txt file.
|
53
|
+
|
54
|
+
== 1.6.2 - 8-Aug-2013
|
55
|
+
* Fixed a bug in the ICMP ping helper module. Thanks go to Yuichi
|
56
|
+
Tsunematsu for the spot.
|
57
|
+
* The win32-security library is not just a development dependency. Thanks
|
58
|
+
again go to Yuichi Tsunematsu for the spot.
|
59
|
+
* Updated the icmp ping tests.
|
60
|
+
* Updated the gemspec for MS Windows.
|
61
|
+
|
62
|
+
== 1.6.1 - 17-Jul-2013
|
63
|
+
* Automatically set the scheme to "http" if not present when performing
|
64
|
+
HTTP pings. See https://bugs.ruby-lang.org/issues/8645 for an issue
|
65
|
+
with the uri library that led to this change. Thanks go to Preston Lee
|
66
|
+
for the spot.
|
67
|
+
* Removed the windows/system_info dependency, since it added other
|
68
|
+
dependencies just to check the Windows version. Instead, I added a
|
69
|
+
helper file that adds some needed Windows functions using FFI.
|
70
|
+
* Added Rake as a development dependency and updated the Gemfile
|
71
|
+
source because Bundler. Thanks to Jean-Philippe Doyle for the patches.
|
72
|
+
* Added some warning text to the Net::Ping::External tests for users
|
73
|
+
who are using OpenDNS. In short, you will probably get test failures
|
74
|
+
and surprising true results for bad hosts.
|
75
|
+
|
76
|
+
== 1.6.0 - 19-Mar-2013
|
77
|
+
* Split out the ldap portion of the code into its own branch.
|
78
|
+
* Don't require resolv-replace on Ruby 1.9.3 or later.
|
79
|
+
* Now gets proxy information from the http_proxy, https_proxy, and
|
80
|
+
no_proxy environment variables and uses that when making requests.
|
81
|
+
Thanks go to Kevin Olbrich for the patch.
|
82
|
+
|
83
|
+
== 1.5.3 - 29-Feb-2012
|
84
|
+
* Removed the Windows::Console dependency and replaced it with FFI since there
|
85
|
+
were only two functions needed. This had the nice side effect of making it
|
86
|
+
work with JRuby, too.
|
87
|
+
* Minor cleanup on some multi-variable assignment.
|
88
|
+
* Fixed require statements and one test for 1.9.
|
89
|
+
|
90
|
+
== 1.5.2 - 4-Nov-2011
|
91
|
+
* The Net::Ping::HTTP class now defaults to using HEAD instead of GET
|
92
|
+
for its ping test. You can alter this via the get_request accessor.
|
93
|
+
Thanks got to Balazs Kutil for the patch.
|
94
|
+
* Added the ssl_verify_mode accessor to the Net::Ping::HTTP class, which
|
95
|
+
defaults to VERIFY_NONE. This fixes possible warnings resulting from
|
96
|
+
missing SSL certificates when using https. Thanks go to Balazs Kutil
|
97
|
+
for the patch.
|
98
|
+
|
99
|
+
== 1.5.1 - 15-Sep-2011
|
100
|
+
* Use RbConfig on Ruby 1.9 and later. Thanks go to Torsten Schönebaum
|
101
|
+
for the patch.
|
102
|
+
|
103
|
+
== 1.5.0 - 3-May-2011
|
104
|
+
* Added the Net::Ping::LDAP class which allows you to perform LDAP pings.
|
105
|
+
Thanks go to Paul Gallagher for adding this.
|
106
|
+
* The duration instance variable is now reset to nil on a failed ping. Again,
|
107
|
+
thanks go to Paul Gallagher.
|
108
|
+
|
109
|
+
== 1.4.1 - 17-Mar-2011
|
110
|
+
* Incorporated changes from Lukas Zapletal that alters the icmp tests to use
|
111
|
+
your localhost instead of going outside the network.
|
112
|
+
* The http tests were similarly modified courtesy of fakeweb, which is now a
|
113
|
+
development dependency. Again, change from Lukas Zapletal.
|
114
|
+
* The icmp tests were reworked for Windows Vista and later. This required the
|
115
|
+
addition of the win32-security library as a development dependency.
|
116
|
+
* The Net::Ping::WMI class is no longer skipped on require or in tests since
|
117
|
+
JRuby now supports win32ole.
|
118
|
+
|
119
|
+
== 1.4.0 - 14-Feb-2011
|
120
|
+
* Added the redirect_limit accessor for the Net::Ping::HTTP class. This caps
|
121
|
+
the number of redirects that are allowed before a ping is considered a
|
122
|
+
failure. The default is 5.
|
123
|
+
* Changed the way in which redirects are detected. Previously I was checking
|
124
|
+
against the response class, but decided this was unreliable. I now check the
|
125
|
+
response code itself. Any code in the 300 range is considered a redirect.
|
126
|
+
* The default port for the Net::Ping::HTTP class is no longer explicitly set
|
127
|
+
to 80, but instead uses the result of the URI.parse(uri).port method by
|
128
|
+
default. Note that you can still override the port if you explicitly provide
|
129
|
+
one in the constructor.
|
130
|
+
* The Net::Ping::HTTP class now handles https URI's properly. Note that you may
|
131
|
+
get a warning about peer certificates.
|
132
|
+
|
133
|
+
== 1.3.7 - 14-Oct-2010
|
134
|
+
* Wrapped the ICMP ping in a while loop that breaks on success to prevent
|
135
|
+
the ping from failing too early. Thanks go to Benny Holmgren for the
|
136
|
+
spot and the patch.
|
137
|
+
|
138
|
+
== 1.3.6 - 4-Sep-2010
|
139
|
+
* Fixed variable naming issue in Net::Ping::External. Thanks go to taw
|
140
|
+
for the spot.
|
141
|
+
* Added a default Rake task.
|
142
|
+
* Refactored the tests for Net::Ping::External to take advantage of the
|
143
|
+
features of test-unit 2.x.
|
144
|
+
|
145
|
+
== 1.3.5 - 3-Sep-2010
|
146
|
+
* Allow for custom user agent in Net::Ping::HTTP. Thanks go to Michael
|
147
|
+
Reinsch for the patch.
|
148
|
+
|
149
|
+
== 1.3.4 - 25-Jun-2010
|
150
|
+
* Fixed a dumb platform bug. Thanks go to Jason Frey for the spot.
|
151
|
+
|
152
|
+
== 1.3.3 - 21-Jun-2010
|
153
|
+
* Bug fixes for JRuby on MS Windows. The code now explicitly checks for JRuby
|
154
|
+
in a few places to ensure it doesn't try to load unsupported libraries
|
155
|
+
on MS Windows. Thanks go to Rob Schultz for the spot and some patches.
|
156
|
+
* The Net::Ping::HTTP class will no longer fail because a root URI
|
157
|
+
is missing a trailing slash. If the URI#path is empty, it now defaults
|
158
|
+
to the root path.
|
159
|
+
* The Rakefile tasks and naming were refactored.
|
160
|
+
* Some tests were refactored to take advantage of test-unit 2.x features,
|
161
|
+
as well as make them better and more descriptive in general.
|
162
|
+
|
163
|
+
== 1.3.2 - 21-Sep-2009
|
164
|
+
* Doing a 'require "net/ping"' was not automatically loading the
|
165
|
+
Net::Ping::WMI class on MS Windows. This has been fixed. Thanks go to
|
166
|
+
Joseph M. for the spot.
|
167
|
+
* Removed all $LOAD_PATH mangling for both the library and tests.
|
168
|
+
* Fixed a bug in the Net::Ping::HTTP class where a failed redirect did
|
169
|
+
not set the @exception and @warning instance variables properly.
|
170
|
+
* The PingStatus struct returned by Net::Ping::WMI is now frozen.
|
171
|
+
* The test-unit library was switched from a runtime dependency to a
|
172
|
+
development dependency.
|
173
|
+
* Added the :gem Rake task that builds a gem.
|
174
|
+
* Updated the :gem_install task to use the :gem task as a prerequisite.
|
175
|
+
* Updated the dependencies for MS Windows.
|
176
|
+
* The Rake test tasks are now more Rakish, e.g. test:tcp instead of test_tcp.
|
177
|
+
* Renamed example file names to avoid any potential confusion with actual
|
178
|
+
test files.
|
179
|
+
|
180
|
+
== 1.3.1 - 22-Jul-2009
|
181
|
+
* Removed class aliases, e.g. use Ping::External, not PingExternal.
|
182
|
+
* Minor code change to eliminate a warning that popped up in 1.9.x.
|
183
|
+
* The win32-open3 library is removed as a dependency for Ruby 1.9.x.
|
184
|
+
* Changed license to Artistic 2.0.
|
185
|
+
* Some gemspec and README updates.
|
186
|
+
|
187
|
+
== 1.3.0 - 19-May-2009
|
188
|
+
* Added the Ping::WMI class for MS Windows. This class encapsulates the
|
189
|
+
Win32_PingStatus WMI class. Unlike other ping methods, this one returns
|
190
|
+
a struct that contains various bits of information.
|
191
|
+
* The Net::Ping::External class now ensures that handles opened by the open3
|
192
|
+
call are closed. Thanks go to Nick S. Kanakakorn for the spot and a
|
193
|
+
preliminary patch.
|
194
|
+
* The Net::Ping::ICMP class now explicitly closes the socket if the call to
|
195
|
+
the Socket.pack_sockaddr_in method fails.
|
196
|
+
* Some documentation updates.
|
197
|
+
|
198
|
+
== 1.2.3 - 13-Jan-2008
|
199
|
+
* Fixed a bug in the checksum private method where it would die on odd data
|
200
|
+
sizes. Thanks go to Jake Douglas for the spot.
|
201
|
+
* A Socket.get_sockaddr_in call in the Ping::ICMP class is no longer included
|
202
|
+
as part of the overall ping time. Thanks go again to Jake Douglas for
|
203
|
+
the spot.
|
204
|
+
* Added data_size tests to the Ping::ICMP test suite.
|
205
|
+
* Renamed and updated the test files. The test-unit 2.x gem is now a
|
206
|
+
prerequisite as a result.
|
207
|
+
|
208
|
+
== 1.2.2 - 22-Jan-2008
|
209
|
+
* Bug fix for Ping::External where it was not honoring the timeout value.
|
210
|
+
Thanks go to Chris Morris for the spot and the patch.
|
211
|
+
* Bug fix for Ping::External where non-English output could cause false
|
212
|
+
positives on MS Windows Vista or later. This library now requires the
|
213
|
+
windows-pr library on MS Windows systems as a result.
|
214
|
+
* Added the Ping::UDP.service_check and Ping::UDP.service_check= class
|
215
|
+
methods. This method controls whether or not Errno::ECONNREFUSED or
|
216
|
+
Errno::ECONNRESET are considered successful pings or not.
|
217
|
+
* The Ping::HTTP class no longer uses the resolv-replace library on MS Windows
|
218
|
+
because it was (ironically) causing timeouts.
|
219
|
+
* Changed the Ping::TCP.econnrefused method to Ping::TCP.service_check. I
|
220
|
+
changed it because I now use a similar method in Ping::UDP, but that handles
|
221
|
+
more than Errno::ECONNREFUSED. An alias is provided to provide backwards
|
222
|
+
compatibility, but it is considered deprecated and will be removed in the
|
223
|
+
1.3.0 release.
|
224
|
+
* Removed the install.rb file. The Rakefile now handles installation.
|
225
|
+
|
226
|
+
== 1.2.1 - 6-Apr-2007
|
227
|
+
* For the Ping::External class, if a ping attempt results in 100% packet loss
|
228
|
+
it is now considered a failed ping, regardless of whether or not an error
|
229
|
+
was sent to stdout.
|
230
|
+
* Fixed the Ping::External class for OS X.
|
231
|
+
* Added a Rakefile. Installation and testing should now be run via Rake tasks.
|
232
|
+
* Minor fix for the Ping::ICMP class where I had accidentally dup'd some
|
233
|
+
aliases. This was harmless, but did cause warnings with -w.
|
234
|
+
|
235
|
+
== 1.2.0 - 5-Dec-2006
|
236
|
+
* Internal reorganization - each class now lives in its own file.
|
237
|
+
* Added the Ping::ICMP class. Thanks go to Jos Backus for contributing a
|
238
|
+
large part of the code.
|
239
|
+
* The host argument is now optional in the constructor. You can now specify
|
240
|
+
it in the ping method instead. Note that it must be specified in one place
|
241
|
+
or the other.
|
242
|
+
* Each PingXXX class is now Ping::XXX instead. However, class name aliases
|
243
|
+
have been setup for backwards compatibility for now.
|
244
|
+
* The constructor for each Ping types now yields self.
|
245
|
+
* Added the pingecho alias for the ping method for each Ping type.
|
246
|
+
* Added the Ping::HTTP#follow_redirect accessor.
|
247
|
+
* The Ping::HTTP#ping method now honors the timeout value.
|
248
|
+
* The Ping::HTTP class now follows redirects automatically, though this is
|
249
|
+
configurable with the follow_redirect accessor.
|
250
|
+
* The Ping::TCP.ecr and Ping::TCP.ecr= methods are now true class method
|
251
|
+
aliases (they were just wrappers previously).
|
252
|
+
* The Ping::UDP class now enforces a 64 character limit on data that can be
|
253
|
+
sent on a udp ping.
|
254
|
+
* Updated the gemspec. Specifically, MS Windows now has a dependency on
|
255
|
+
the win32-open3 package.
|
256
|
+
* Added inline rdoc.
|
257
|
+
|
258
|
+
== 1.1.1 - 15-Jun-2006
|
259
|
+
* Fixed a bug in PingTCP (bad variable name). Thanks go to Anoop Chandran
|
260
|
+
for the spot.
|
261
|
+
* Minor variable name refactoring.
|
262
|
+
* Minor test updates.
|
263
|
+
|
264
|
+
== 1.1.0 - 17-Jul-2005
|
265
|
+
* Fixed a bug in the PingHTTP#ping method where I was accidentally passing
|
266
|
+
the timeout value instead of the port number as the third argument to
|
267
|
+
Net::HTTP.get_response.
|
268
|
+
* The PingHTTP.new method now has a default port of 80.
|
269
|
+
* Minor doc update for PingHTTP.new.
|
270
|
+
|
271
|
+
== 1.0.1 - 22-Jun-2005
|
272
|
+
* Bug fix for the install.rb file. The gem is unaffected.
|
273
|
+
|
274
|
+
== 1.0.0 - 14-Jun-2005
|
275
|
+
* Renamed project from net-pingsimple to just net-ping.
|
276
|
+
* Added a PingHTTP subclass.
|
277
|
+
* Moved project to RubyForge.
|
278
|
+
* Added a gemspec.
|
279
|
+
|
280
|
+
== 0.3.1 - 9-Apr-2005
|
281
|
+
* Updated PingExternal to use win32/open3 on Win32 platforms.
|
282
|
+
* Minor error handling change for the PingSimple.econnrefused= method. It now
|
283
|
+
raises an ArgumentError if any values other than true or false are passed.
|
284
|
+
* PingSimple#warning and PingSimple#exception are now read-only methods.
|
285
|
+
* The warning and exception attributes are now reset to nil between each call
|
286
|
+
to ping.
|
287
|
+
* The data and data= methods are now unique to the PingUDP class.
|
288
|
+
* The time and time= methods have been changed to timeout and timeout=,
|
289
|
+
respectively.
|
290
|
+
* Removed the pingsimple.rd and pingsimple.html files. The pingsimple.txt file
|
291
|
+
has been reorganized and is now rdoc friendly.
|
292
|
+
* Added a few sample programs under the 'examples' directory.
|
293
|
+
* Some minor test updates and changes.
|
294
|
+
* Removed the INSTALL file. That information is now in the README file.
|
295
|
+
* Now requires Ruby 1.8.0 or later.
|
296
|
+
|
297
|
+
== 0.3.0 - 12-Feb-2004
|
298
|
+
* Fixed ping string for PingExternal class based on platform. The old
|
299
|
+
string was really only good for Linux and *BSD.
|
300
|
+
* Added Win32 support (requires win32_popen package).
|
301
|
+
* Added warranty info.
|
302
|
+
|
303
|
+
== 0.2.3 - 12-Aug-2003
|
304
|
+
* Fixed a bug in PingExternal that could consume file descriptors if used in a loop
|
305
|
+
* Added some initialization to avoid -w warnings
|
306
|
+
* Removed VERSION() class method. Use the constant instead
|
307
|
+
* Modified test suite slightly
|
308
|
+
* Moved rd2 docs to doc directory
|
309
|
+
|
310
|
+
== 0.2.2 - 3-Apr-2003
|
311
|
+
* Fixed handling of stdout in PingExternal
|
312
|
+
|
313
|
+
== 0.2.1 - 27-Mar-2003
|
314
|
+
* Fixed major bug with PingExternal class with regards to down hosts
|
315
|
+
* Exceptions and warnings from PingExternal are now chomp'd
|
316
|
+
* Modified test suite
|
317
|
+
* Doc updates
|
318
|
+
|
319
|
+
== 0.2.0 - 14-Feb-2003
|
320
|
+
* The default behavior of PingTCP with regards to ECONNREFUSED is now
|
321
|
+
configurable
|
322
|
+
* Added a VERSION constant and method (to the base class)
|
323
|
+
* Added a test suite (for those with testunit installed)
|
324
|
+
* Doc changes, rearrangement and general cleanup
|
325
|
+
* Manifest is now MANIFEST
|
326
|
+
* Added an INSTALL file
|
327
|
+
|
328
|
+
== 0.1.0 - 9-Dec-2002
|
329
|
+
* Added ping? alias for ping method
|
330
|
+
* Warnings now handled separately
|
331
|
+
* Corrected a mis-named variable in Ping::External
|
332
|
+
* Fixed the install.rb file
|
333
|
+
* Updated and added docs
|
334
|
+
* Renamed tarball to net-pingsimple to reflect RAA naming convention
|
335
|
+
|
336
|
+
== 0.0.1a
|
337
|
+
* Did this release ever happen?
|
338
|
+
|
339
|
+
== 0.0.1
|
340
|
+
* Initial release.
|