Skip to content

Commit

Permalink
One more change to a code example that I meant to update the other day.
Browse files Browse the repository at this point in the history
  • Loading branch information
bwhite000 committed Mar 7, 2016
1 parent 20818cb commit 3931190
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/web_server_misc.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import "package:web_server/web_server.dart";

void main() {
// Initialize and bind the HTTP and WebSocket WebServer
final WebServer localWebServer = new WebServer(InternetAddress.LOOPBACK_IP_V4, 8080,
final WebServer localWebServer = new WebServer(InternetAddress.ANY_IP_V4, 8080,
hasHttpServer: true, hasWebSocketServer: true);

// Log out some of the connection information
Expand Down

0 comments on commit 3931190

Please sign in to comment.