Add counters for MPTP buffers and syscalls.
[swifty.git] / src / lib / client.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <arpa/inet.h>
4 #include <netinet/in.h>
5 #include <sys/types.h>
6 #include <sys/socket.h>
7 #include <unistd.h>
8
9 #include "lib_swift.h"
10
11 int main()
12 {
13         /* create a single download session */
14         Swift s = socketSwift(1);
15         struct sockSwiftaddr my_addr;
16         char buf[100];
17         struct listsockaddr lsa;
18
19         // populate sockSwiftaddr
20         my_addr.sin_family = AF_INET;
21         my_addr.sin_port = htons(SWIFT_PORT);
22         my_addr.sin_addr.N = 1;
23         my_addr.sin_addr.s_addr[0] = htonl(INADDR_LOOPBACK);
24
25         recvfromSwift(s, buf, 100, 0, &my_addr, sizeof(my_addr));
26
27         transformFromSwiftToAddr(&lsa, my_addr);
28         printf("Received packet from %s:%d\nData: %s\n\n", inet_ntoa(lsa.sa[0].sin_addr), ntohs(my_addr.sin_port), buf);
29
30         closeSwift(s);
31
32         return 0;
33 }