client now sending to server
[irssi-notify.git] / client.c
index b494807..57078dc 100644 (file)
--- a/client.c
+++ b/client.c
@@ -72,20 +72,10 @@ int main(int argc, char *argv[])
                return 2;
        }
 
-       inet_ntop(p->ai_family, get_in_addr((struct sockaddr *)p->ai_addr),
-                       s, sizeof s);
-       printf("client: connecting to %s\n", s);
+    if (send(sockfd, "Hello, world!", 13, 0) == -1)
+        perror("send");
 
-       freeaddrinfo(servinfo); // all done with this structure
-
-       if ((numbytes = recv(sockfd, buf, MAXDATASIZE-1, 0)) == -1) {
-           perror("recv");
-           exit(1);
-       }
-
-       buf[numbytes] = '\0';
-
-       printf("client: received '%s'\n",buf);
+    printf("connected\n");
 
        close(sockfd);