1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
   | #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <assert.h> #include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <errno.h> #include <string.h> #include <signal.h> #include <fcntl.h>
  #define BUF_SIZE 1024
  static int connfd;
  void sig_urg(int sig) {     int save_errno = errno;     char buffer[BUF_SIZE];     memset(buffer, '\0', BUF_SIZE);     int ret = recv(connfd, buffer, BUF_SIZE - 1, MSG_OOB);      printf("got %d bytes of oob data '%s\n' ", ret, buffer);     errno = save_errno; }
  void addsig (int sig, void (* sig_handler) (int)) {     struct sigaction sa;     memset(&sa, '\0', sizeof(sa));     sa.sa_handler = sig_handler;     sa.sa_flags |= SA_RESTART;     sigfillset(&sa.sa_mask);     assert(sigaction(sig, &sa, NULL) != -1); }
  int main(int argc, char* argv[]) {     if (argc <= 2)     {         printf("usage: %s ip_address port_number\n", basename(argv[0]));         return 1;     }     const char* ip = argv[1];     int port = atoi(argv[2]);
      struct sockaddr_in address;     bzero(&address, sizeof(address));     address.sin_family = AF_INET;     inet_pton(AF_INET, ip, &address.sin_addr);     address.sin_port = htons(port);
      int sock = socket(PF_INET, SOCK_STREAM, 0);     assert(socket >= 0);
      int ret = bind(sock, (struct sockaddr*)&address, sizeof(address));     assert(ret != -1);
      ret = listen(sock, 5);     assert(ret != -1);
      struct sockaddr_in client;     socklen_t client_addrlength = sizeof(client);     connfd = accept(sock, (struct sockaddr*)&client, &client_addrlength);     if (connfd < 0) {         printf("errno is: %d\n", errno);     } else {         addsig(SIGURG, sig_urg);         fcntl(connfd, F_SETOWN, getpid()); 
          char buffer[BUF_SIZE];         while (1) {             memset(buffer, '\0', BUF_SIZE);             ret = recv(connfd, buffer, BUF_SIZE - 1, 0);             if (ret <= 0) {                 break;             }             printf("got %d bytes of normal data '%s\n", ret, buffer);         }         close(connfd);     }     close(sock);     return 0; }
   |