projects
/
platform
/
upstream
/
nodejs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
11e3cfc
)
dgram: add socket.fd compatibility hack to dgram_uv.js
author
Ben Noordhuis
<info@bnoordhuis.nl>
Wed, 24 Aug 2011 00:42:49 +0000
(
02:42
+0200)
committer
Ben Noordhuis
<info@bnoordhuis.nl>
Wed, 24 Aug 2011 20:27:25 +0000
(22:27 +0200)
lib/dgram_uv.js
patch
|
blob
|
history
diff --git
a/lib/dgram_uv.js
b/lib/dgram_uv.js
index c06b291edb0f4142efd31f73d49be042433526e2..117f871d1db1a922f33e9107992abd490edd2613 100644
(file)
--- a/
lib/dgram_uv.js
+++ b/
lib/dgram_uv.js
@@
-97,6
+97,7
@@
function Socket(type, listener) {
this._receiving = false;
this._bound = false;
this.type = type;
+ this.fd = null; // compatibility hack
if (typeof listener === 'function')
this.on('message', listener);
@@
-287,6
+288,7
@@
Socket.prototype._stopReceiving = function() {
this._handle.onmessage = null;
this._handle.recvStop();
this._receiving = false;
+ this.fd = null; // compatibility hack
};