akmhoque | 8fdd641 | 2012-12-04 15:05:33 -0600 | [diff] [blame] | 1 | //1. Make the necessary includes and set up the variables: |
| 2 | #include <sys/types.h> |
| 3 | #include <sys/socket.h> |
| 4 | #include <stdio.h> |
| 5 | #include <sys/un.h> |
| 6 | #include <unistd.h> |
| 7 | #include <stdlib.h> |
| 8 | #include <string.h> |
| 9 | #include <netinet/in.h> |
| 10 | #include <netdb.h> |
| 11 | #include <arpa/inet.h> |
| 12 | #include <getopt.h> |
| 13 | |
| 14 | struct option longopts[] = |
| 15 | { |
| 16 | { "server_ip", required_argument, NULL, 's'}, |
| 17 | { "server_port", required_argument, NULL, 'p'}, |
| 18 | { 0 } |
| 19 | }; |
| 20 | |
| 21 | static int |
| 22 | usage(char *progname) |
| 23 | { |
Adam Alyyan | c350e3a | 2013-01-14 14:35:57 -0600 | [diff] [blame] | 24 | printf("Usage: %s [OPTIONS...]\n\ |
| 25 | NLSR API client....\n\ |
| 26 | nlsrc -s server_ip -p server_port add|del name|neighbor name_prefix [faceX] \n\ |
| 27 | option -- description\n\n\ |
| 28 | add|del -- specify whether you want to add or delete.\n\ |
| 29 | name|neighbor -- specify whether you are adding a name or a neighbor.\n\ |
| 30 | name_prefix -- name of the prefix for the name|neighbor.\n\ |
| 31 | faceX -- face ID for neighbor if the third argument is neighbor.\n\n\ |
| 32 | Examples:\n\ |
| 33 | 1) nlsrc -s 127.0.0.1 -p 9696 add name /ndn/memphis.edu/test \n", progname); |
akmhoque | 8fdd641 | 2012-12-04 15:05:33 -0600 | [diff] [blame] | 34 | |
Adam Alyyan | c350e3a | 2013-01-14 14:35:57 -0600 | [diff] [blame] | 35 | exit(1); |
akmhoque | 8fdd641 | 2012-12-04 15:05:33 -0600 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | int main(int argc, char *argv[]) |
| 39 | { |
| 40 | int sockfd; |
| 41 | int len; |
| 42 | struct sockaddr_in address; |
| 43 | int result; |
Syed Obaid Amin | 78e9aa9 | 2012-12-21 03:57:13 -0600 | [diff] [blame] | 44 | int bytesSent; |
akmhoque | 8fdd641 | 2012-12-04 15:05:33 -0600 | [diff] [blame] | 45 | char *server_address, *server_port; |
| 46 | |
| 47 | int command_len=0; |
| 48 | int i; |
| 49 | |
Adam Alyyan | c350e3a | 2013-01-14 14:35:57 -0600 | [diff] [blame] | 50 | if (argc < 8) |
| 51 | usage(argv[0]); |
| 52 | |
| 53 | if (strcmp(argv[6], "neighbor") == 0 && argc < 9) |
| 54 | usage(argv[0]); |
| 55 | |
| 56 | if (strcmp(argv[6], "name") != 0 && strcmp(argv[6], "neighbor") != 0) |
| 57 | usage(argv[0]); |
akmhoque | 8fdd641 | 2012-12-04 15:05:33 -0600 | [diff] [blame] | 58 | |
| 59 | while ((result = getopt_long(argc, argv, "s:p:", longopts, 0)) != -1) |
| 60 | { |
| 61 | switch (result) |
| 62 | { |
| 63 | case 's': |
| 64 | server_address = optarg; |
| 65 | break; |
| 66 | case 'p': |
| 67 | server_port = optarg; |
| 68 | break; |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | |
| 73 | char recv_buffer[1024]; |
| 74 | bzero(recv_buffer,1024); |
| 75 | |
| 76 | for(i=5;i<argc;i++) |
| 77 | command_len+=(strlen(argv[i])+1); |
| 78 | char *command=malloc(command_len); |
Syed Obaid Amin | 4c95956 | 2012-12-21 16:43:21 -0600 | [diff] [blame] | 79 | memset(command, 0, command_len); |
akmhoque | 8fdd641 | 2012-12-04 15:05:33 -0600 | [diff] [blame] | 80 | for(i=5;i<argc;i++) |
| 81 | { |
| 82 | memcpy(command+strlen(command),argv[i],strlen(argv[i])); |
| 83 | if ( i < argc-1 ) |
| 84 | memcpy(command+strlen(command)," ",1); |
| 85 | } |
| 86 | |
| 87 | sockfd = socket(AF_INET, SOCK_STREAM, 0); |
| 88 | //address.sun_family = AF_UNIX; |
| 89 | //strcpy(address.sun_path, "/tmp/nlsr_api_server_socket"); |
| 90 | address.sin_family = AF_INET; |
| 91 | address.sin_addr.s_addr = inet_addr(server_address); |
Adam Alyyan | c350e3a | 2013-01-14 14:35:57 -0600 | [diff] [blame] | 92 | address.sin_port = htons(atoi(server_port)); |
akmhoque | 8fdd641 | 2012-12-04 15:05:33 -0600 | [diff] [blame] | 93 | |
| 94 | len = sizeof(address); |
| 95 | result = connect(sockfd, (struct sockaddr *)&address, len); |
| 96 | if(result == -1) |
| 97 | { |
| 98 | perror("oops nlsrc "); |
| 99 | exit(1); |
| 100 | } |
| 101 | printf("Command to send: %s \n",command); |
Syed Obaid Amin | 78e9aa9 | 2012-12-21 03:57:13 -0600 | [diff] [blame] | 102 | bytesSent=send(sockfd, command, strlen(command),0); |
akmhoque | ea2fb63 | 2013-01-16 17:18:01 -0600 | [diff] [blame] | 103 | printf("Command len: %d, Bytes sent: %d \n",(int)strlen(command), bytesSent); |
akmhoque | 8fdd641 | 2012-12-04 15:05:33 -0600 | [diff] [blame] | 104 | recv(sockfd, recv_buffer, 1024, 0); |
| 105 | printf("%s\n",recv_buffer); |
| 106 | free(command); |
| 107 | close(sockfd); |
| 108 | exit(0); |
| 109 | } |