-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dgram: make _createSocketHandle() internal only
_createSocketHandle() is used internally by the cluster module. This commit makes it internal only API. PR-URL: #21923 Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Wyatt Preul <wpreul@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
- Loading branch information
Showing
4 changed files
with
75 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,70 @@ | ||
'use strict'; | ||
const assert = require('assert'); | ||
const { codes } = require('internal/errors'); | ||
const { UDP } = process.binding('udp_wrap'); | ||
const { ERR_INVALID_ARG_TYPE, ERR_SOCKET_BAD_TYPE } = codes; | ||
const kStateSymbol = Symbol('state symbol'); | ||
let dns; // Lazy load for startup performance. | ||
|
||
module.exports = { kStateSymbol }; | ||
|
||
function lookup4(lookup, address, callback) { | ||
return lookup(address || '127.0.0.1', 4, callback); | ||
} | ||
|
||
|
||
function lookup6(lookup, address, callback) { | ||
return lookup(address || '::1', 6, callback); | ||
} | ||
|
||
|
||
function newHandle(type, lookup) { | ||
if (lookup === undefined) { | ||
if (dns === undefined) { | ||
dns = require('dns'); | ||
} | ||
|
||
lookup = dns.lookup; | ||
} else if (typeof lookup !== 'function') { | ||
throw new ERR_INVALID_ARG_TYPE('lookup', 'Function', lookup); | ||
} | ||
|
||
if (type === 'udp4') { | ||
const handle = new UDP(); | ||
|
||
handle.lookup = lookup4.bind(handle, lookup); | ||
return handle; | ||
} | ||
|
||
if (type === 'udp6') { | ||
const handle = new UDP(); | ||
|
||
handle.lookup = lookup6.bind(handle, lookup); | ||
handle.bind = handle.bind6; | ||
handle.send = handle.send6; | ||
return handle; | ||
} | ||
|
||
throw new ERR_SOCKET_BAD_TYPE(); | ||
} | ||
|
||
|
||
function _createSocketHandle(address, port, addressType, fd, flags) { | ||
// Opening an existing fd is not supported for UDP handles. | ||
assert(typeof fd !== 'number' || fd < 0); | ||
|
||
const handle = newHandle(addressType); | ||
|
||
if (port || address) { | ||
const err = handle.bind(address, port || 0, flags); | ||
|
||
if (err) { | ||
handle.close(); | ||
return err; | ||
} | ||
} | ||
|
||
return handle; | ||
} | ||
|
||
|
||
module.exports = { kStateSymbol, _createSocketHandle, newHandle }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters