You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
430 B

var common = require('../common');
var assert = require('assert');
var TCP = process.binding('tcp_wrap').TCP;
var uv = process.binding('uv');
var handle = new TCP();
// Should be able to bind to the common.PORT
var err = handle.bind('0.0.0.0', common.PORT);
assert.equal(err, 0);
// Should not be able to bind to the same port again
err = handle.bind('0.0.0.0', common.PORT);
assert.equal(err, uv.UV_EINVAL);
handle.close();