Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDan VerWeire <dverweire@gmail.com>2011-11-23 01:04:40 +0400
committerBen Noordhuis <info@bnoordhuis.nl>2012-01-21 06:26:09 +0400
commitf2b1f57f74ce23ee7160de76844a71ab34276aa6 (patch)
tree607b15325f496a896301ee3c0140368db7680ed2 /test
parentf749338e1eee390fc654f129f4419895db4f8e50 (diff)
dgram: reintroduce setMulticastTTL()
Removed during the early stages of node 0.5 refactoring to libuv.
Diffstat (limited to 'test')
-rw-r--r--test/simple/test-dgram-multicast-setTTL.js41
1 files changed, 41 insertions, 0 deletions
diff --git a/test/simple/test-dgram-multicast-setTTL.js b/test/simple/test-dgram-multicast-setTTL.js
new file mode 100644
index 00000000000..a2207a78d00
--- /dev/null
+++ b/test/simple/test-dgram-multicast-setTTL.js
@@ -0,0 +1,41 @@
+// Copyright Joyent, Inc. and other Node contributors.
+//
+// Permission is hereby granted, free of charge, to any person obtaining a
+// copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to permit
+// persons to whom the Software is furnished to do so, subject to the
+// following conditions:
+//
+// The above copyright notice and this permission notice shall be included
+// in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
+// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
+// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
+// USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+var common = require('../common'),
+ assert = require('assert'),
+ dgram = require('dgram'),
+ thrown = false,
+ socket = dgram.createSocket('udp4');
+
+socket.bind(common.PORT);
+socket.setMulticastTTL(16);
+
+//Try to set an invalid TTL (valid ttl is > 0 and < 256)
+try {
+ socket.setMulticastTTL(1000);
+} catch (e) {
+ thrown = true;
+}
+
+assert(thrown, 'Setting an invalid mutlicast TTL should throw some error');
+
+//close the socket
+socket.close(); \ No newline at end of file