Skip to content

Commit

Permalink
ext-hub: tune WPWrapper statement order
Browse files Browse the repository at this point in the history
  • Loading branch information
kaven276 committed Oct 10, 2012
1 parent 797a922 commit 6df30a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ext_hub.js
Expand Up @@ -121,9 +121,9 @@ var server = net.createServer(function(oraSock){
function WPWrapper(id, hostp, desc){
var wpw = this;
var wpSock = this.wpSock = new net.Socket({allowHalfOpen : true});
this.desc = desc;
this.hostp = hostp.split(':');
this.id = id;
this.hostp = hostp.split(':');
this.desc = desc;
this.sts = 'close';
this.queue = [];

Expand Down

0 comments on commit 6df30a9

Please sign in to comment.