mirror of
https://salsa.debian.org/ha-team/libqb
synced 2026-01-11 16:51:28 +00:00
I (Angus) have changed some of Fabio's changes. Signed-off-by: Angus Salkeld <asalkeld@redhat.com>
75 lines
1.8 KiB
C
75 lines
1.8 KiB
C
/*
|
|
* Copyright (c) 2011 Red Hat, Inc.
|
|
*
|
|
* All rights reserved.
|
|
*
|
|
* Author: Angus Salkeld <asalkeld@redhat.com>
|
|
*
|
|
* libqb is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 2.1 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* libqb is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with libqb. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#include "os_base.h"
|
|
#include <netdb.h>
|
|
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
int sock;
|
|
int32_t res;
|
|
char send_data[1024];
|
|
char recv_data[1024];
|
|
struct sockaddr_in server_addr;
|
|
struct hostent *host = gethostbyname("127.0.0.1");
|
|
|
|
if ((sock = socket(AF_INET, SOCK_STREAM, 0)) == -1) {
|
|
perror("Socket");
|
|
exit(1);
|
|
}
|
|
|
|
server_addr.sin_family = AF_INET;
|
|
server_addr.sin_port = htons(5000);
|
|
memcpy(&server_addr.sin_addr, host->h_addr, sizeof(host->h_addr));
|
|
bzero(&(server_addr.sin_zero),8);
|
|
|
|
if (connect(sock, (struct sockaddr *)&server_addr,
|
|
sizeof(struct sockaddr)) == -1) {
|
|
perror("Connect");
|
|
exit(1);
|
|
}
|
|
|
|
while(1) {
|
|
printf("\nSEND (q or Q to quit) : ");
|
|
if (gets(send_data) == NULL) {
|
|
continue;
|
|
}
|
|
|
|
if (strcmp(send_data , "q") != 0 &&
|
|
strcmp(send_data , "Q") != 0) {
|
|
res = send(sock, send_data, strlen(send_data), 0);
|
|
} else {
|
|
send(sock,send_data, strlen(send_data), 0);
|
|
close(sock);
|
|
break;
|
|
}
|
|
|
|
if (res > 0) {
|
|
res = recv(sock, recv_data, 1024, 0);
|
|
recv_data[res] = '\0';
|
|
|
|
printf("\nResponse: %s ", recv_data);
|
|
}
|
|
}
|
|
return EXIT_SUCCESS;
|
|
}
|