Add socket.address()
This commit is contained in:
Родитель
2582560f91
Коммит
402755b14a
|
@ -335,6 +335,11 @@ Socket.prototype.connect = function () {
|
|||
};
|
||||
|
||||
|
||||
Socket.prototype.address = function () {
|
||||
return getsockname(this.fd);
|
||||
};
|
||||
|
||||
|
||||
Socket.prototype.forceClose = function (exception) {
|
||||
if (this.fd) {
|
||||
this.readable = false;
|
||||
|
@ -471,8 +476,8 @@ Server.prototype.listen = function () {
|
|||
};
|
||||
|
||||
|
||||
Server.prototype.sockName = function () {
|
||||
return getsockname(self.fd);
|
||||
Server.prototype.address = function () {
|
||||
return getsockname(this.fd);
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ var server = new net.Server(function (socket) {
|
|||
sys.puts("server-side socket drain");
|
||||
});
|
||||
});
|
||||
server.listen(8000, "localhost");
|
||||
server.listen(8000);
|
||||
sys.puts("server fd: " + server.fd);
|
||||
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче