| //1. Make the necessary includes and set up the variables: |
| #include <sys/types.h> |
| #include <sys/socket.h> |
| #include <stdio.h> |
| #include <sys/un.h> |
| #include <unistd.h> |
| #include <stdlib.h> |
| #include <string.h> |
| |
| static int |
| usage(char *progname) |
| { |
| printf("Usage: %s [OPTIONS...]\n\ |
| NLSR Api client....\n\ |
| nlsrc add|del name|neighbor name_prefix [faceX] \n\ |
| add/del, -- adding/deleting operation\n\ |
| name/neighbor, -- Operation for name/neighbor\n\ |
| name_name, -- Name prefix for name/neighbor\n\ |
| faceX, -- Face Id for neighbor if third argument is neighbor\n", progname); |
| |
| exit(1); |
| } |
| |
| int main(int argc, char *argv[]) |
| { |
| int sockfd; |
| int len; |
| struct sockaddr_un address; |
| int result; |
| int byteSend; |
| |
| int command_len=0; |
| int i; |
| |
| if (argc < 4 ) |
| usage(argv[0]); |
| if ( strcmp(argv[2],"neighbor") == 0 && argc <5 ) |
| usage(argv[0]); |
| |
| for(i=1;i<argc;i++) |
| command_len+=(strlen(argv[i])+1); |
| char *command=malloc(command_len); |
| memset(command,command_len+1,0); |
| for(i=1;i<argc;i++) |
| { |
| memcpy(command+strlen(command),argv[i],strlen(argv[i])); |
| if ( i < argc-1 ) |
| memcpy(command+strlen(command)," ",1); |
| } |
| |
| sockfd = socket(AF_UNIX, SOCK_STREAM, 0); |
| address.sun_family = AF_UNIX; |
| strcpy(address.sun_path, "/tmp/nlsr_api_server_socket"); |
| len = sizeof(address); |
| result = connect(sockfd, (struct sockaddr *)&address, len); |
| if(result == -1) |
| { |
| perror("oops nlsrc "); |
| exit(1); |
| } |
| printf("Data to send: %s \n",command); |
| byteSend=send(sockfd, command, strlen(command),0); |
| free(command); |
| close(sockfd); |
| exit(0); |
| } |