summaryrefslogtreecommitdiff
path: root/src/net/comm.c
diff options
context:
space:
mode:
authorMario Kilies <MarioKilies@GMX.net>2011-01-24 18:56:32 +0100
committerMario Kilies <MarioKilies@GMX.net>2011-01-24 18:56:32 +0100
commita24153f14dcc95332b91e70e39028228e9b6c4dc (patch)
tree04bb60f0192627ba61ae0b67665cf0634713b238 /src/net/comm.c
parent5ab5af3b1472fe93eb164f5bbece798a402eea65 (diff)
First attempt to implement STATE_CLIENT_WAIT_FOR_HAND_CARDS.
Diffstat (limited to 'src/net/comm.c')
-rw-r--r--src/net/comm.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/net/comm.c b/src/net/comm.c
index 0cb6233..7f9c6c4 100644
--- a/src/net/comm.c
+++ b/src/net/comm.c
@@ -39,8 +39,7 @@ bool net_recv(const int sock, const msg_type_t type)
result = client_parse_deal_hand(&m);
break;
case msg_type_initial_stacks:
- printf("not yet implemented: msg_type_initial_stacks\n");
- exit(EXIT_FAILURE);
+ result = client_parse_initial_stacks(&m);
break;
case msg_type_selected_card:
result = server_parse_selected_card(&m);