Skip to content

Commit

Permalink
fix samples
Browse files Browse the repository at this point in the history
  • Loading branch information
morozovsk committed Sep 5, 2015
1 parent 2786bd6 commit 11a4201
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion samples/chat2/server/master.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}

$config = array(
'class' => 'morozovsk\websocket\Chat2WebsocketMasterHandler',
'class' => 'morozovsk\websocket\samples\Chat2WebsocketMasterHandler',
'pid' => '/tmp/websocket_chat2_master.pid',
'websocket' => 'tcp://127.0.0.1:8011',
'localsocket' => 'tcp://127.0.0.1:8010',
Expand Down
2 changes: 1 addition & 1 deletion samples/chat2/server/worker.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}

$config = array(
'class' => 'morozovsk\websocket\Chat2WebsocketWorkerHandler',
'class' => 'morozovsk\websocket\samples\Chat2WebsocketWorkerHandler',
'pid' => '/tmp/websocket_chat2_worker.pid',
'websocket' => 'tcp://127.0.0.1:8001',
//'localsocket' => 'tcp://127.0.0.1:8010',
Expand Down
2 changes: 1 addition & 1 deletion samples/chat3/server/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}

$config = array(
'class' => 'morozovsk\websocket\Chat3WebsocketDaemonHandler',
'class' => 'morozovsk\websocket\samples\Chat3WebsocketDaemonHandler',
'pid' => '/tmp/websocket_chat.pid',
'websocket' => 'tcp://127.0.0.1:8004',
'localsocket' => 'tcp://127.0.0.1:8010',
Expand Down
2 changes: 1 addition & 1 deletion samples/game/server/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}

$config = array(
'class' => 'morozovsk\websocket\GameWebsocketDaemonHandler',
'class' => 'morozovsk\websocket\samples\GameWebsocketDaemonHandler',
'pid' => '/tmp/websocket_game.pid',
'websocket' => 'tcp://127.0.0.1:8002',
//'localsocket' => 'tcp://127.0.0.1:8010',
Expand Down
2 changes: 1 addition & 1 deletion samples/game2/server/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}

$config = array(
'class' => 'morozovsk\websocket\Game2WebsocketDaemonHandler',
'class' => 'morozovsk\websocket\samples\Game2WebsocketDaemonHandler',
'pid' => '/tmp/websocket_game2.pid',
'websocket' => 'tcp://127.0.0.1:8003',
//'localsocket' => 'tcp://127.0.0.1:8010',
Expand Down

0 comments on commit 11a4201

Please sign in to comment.