X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6ee7e9c2e455536ab817ae0136acfbb53822eecd..5a17cc5861e95968c9d9539217185e20b13d54b0:/examples/gras/console/ping_server.c diff --git a/examples/gras/console/ping_server.c b/examples/gras/console/ping_server.c index 64819dfac6..f1324b19ae 100644 --- a/examples/gras/console/ping_server.c +++ b/examples/gras/console/ping_server.c @@ -12,18 +12,16 @@ XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(Ping); /* Global private data */ typedef struct { - gras_socket_t sock; + xbt_socket_t sock; int endcondition; } server_data_t; static int server_cb_ping_handler(gras_msg_cb_ctx_t ctx, void *payload) { - - xbt_ex_t e; /* 1. Get the payload into the msg variable, and retrieve my caller */ int msg = *(int *) payload; - gras_socket_t expeditor = gras_msg_cb_ctx_from(ctx); + xbt_socket_t expeditor = gras_msg_cb_ctx_from(ctx); /* 2. Retrieve the server's state (globals) */ @@ -33,8 +31,8 @@ static int server_cb_ping_handler(gras_msg_cb_ctx_t ctx, void *payload) /* 3. Log which client connected */ XBT_INFO(">>>>>>>> Got message PING(%d) from %s:%d <<<<<<<<", msg, - gras_socket_peer_name(expeditor), - gras_socket_peer_port(expeditor)); + xbt_socket_peer_name(expeditor), + xbt_socket_peer_port(expeditor)); /* 4. Change the value of the msg variable */ msg = 4321; @@ -43,9 +41,10 @@ static int server_cb_ping_handler(gras_msg_cb_ctx_t ctx, void *payload) gras_msg_send(expeditor, "pong", &msg); /* 6. Deal with errors: add some details to the exception */ - } CATCH(e) { + } + CATCH_ANONYMOUS { gras_socket_close(globals->sock); - RETHROW0("Unable answer with PONG: %s"); + RETHROWF("Unable answer with PONG: %s"); } XBT_INFO(">>>>>>>> Answered with PONG(4321) <<<<<<<<"); @@ -86,10 +85,10 @@ int server(int argc, char *argv[]) gras_cb_register("ping", &server_cb_ping_handler); XBT_INFO(">>>>>>>> Listening on port %d <<<<<<<<", - gras_socket_my_port(globals->sock)); + xbt_socket_my_port(globals->sock)); globals->endcondition = 0; - /* 6. Wait up to 20 minutes for an incomming message to handle */ + /* 6. Wait up to 20 minutes for an incoming message to handle */ gras_msg_handle(20.0); /* 7. Housekeeping */