Skip to content

Commit

Permalink
make server listen on ip6
Browse files Browse the repository at this point in the history
  • Loading branch information
greggman committed May 21, 2016
1 parent 8f42db0 commit df18f26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/hft-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ var HFTServer = function(options, startedCallback) {
server.once('error', makeServerErrorHandler(port));
server.once('listening', makeServerListeningHandler(server, port));

server.listen(port);
server.listen(port, '::');
});

/**
Expand Down

0 comments on commit df18f26

Please sign in to comment.