X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1eb87c9e20e9f75c6167aeed4cb90cfc4d82dc3d..3d462afa403565dd50d8b96bb96300e3bc7eed87:/teshsuite/gras/trp_tcp_client.c diff --git a/teshsuite/gras/trp_tcp_client.c b/teshsuite/gras/trp_tcp_client.c new file mode 100644 index 0000000000..55aa60268e --- /dev/null +++ b/teshsuite/gras/trp_tcp_client.c @@ -0,0 +1,51 @@ +/* $Id$ */ + +/* trp_tcp_client: Client of a test case for the tcp transport. */ + +/* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved. */ + +/* This program is free software; you can redistribute it and/or modify it + * under the terms of the license (GNU LGPL) which comes with this package. */ + +#ifdef __BORLANDC__ +#pragma hdrstop +#endif + +#include +#include "gras.h" +#include "gras/Transport/transport_interface.h" + +XBT_LOG_NEW_CATEGORY(test,"Logging for this test"); + +int main(int argc,char *argv[]) { + gras_socket_t sock; + char data_send[256]; + char data_recv[256]; + + memset(data_send, 0, sizeof(data_send)); + memset(data_recv, 0, sizeof(data_recv)); + + gras_init(&argc,argv); + + fprintf(stderr,"===[CLIENT]=== Contact the server\n"); + sock = gras_socket_client(NULL,55555); + + sprintf(data_send,"Hello, I am a little test data to send."); + fprintf(stderr,"===[CLIENT]=== Send data\n"); + gras_trp_send(sock,data_send, sizeof(data_send),1); + gras_trp_flush(sock); + fprintf(stderr,"===[CLIENT]=== Waiting for the ACK\n"); + gras_trp_recv(sock,data_recv, sizeof(data_recv)); + + if (strcmp(data_send, data_recv)) { + fprintf(stderr, "===[CLIENT]=== String sent != string received\n"); + xbt_abort(); + } + fprintf(stderr,"===[CLIENT]=== Got a valid ACK\n"); + + fprintf(stderr,"===[CLIENT]=== Exiting successfully\n"); + gras_socket_close(sock); + + gras_exit(); + return 0; +}