This depmod script will create a modules.dep file, just like the depmod
[oweals/busybox.git] / nc.c
diff --git a/nc.c b/nc.c
index 83e1a9c42d1a57324f423a1b0d120c63e493100f..5335872e5a7ca50b4e3fa5b410fbffb333d459b9 100644 (file)
--- a/nc.c
+++ b/nc.c
 
 */
 
-#warning This applet has moved to netkit-tiny.  After BusyBox 0.49, this
-#warning applet will be removed from BusyBox.  All maintainence efforts
-#warning should be done in the netkit-tiny source tree.
-
-#include "busybox.h"
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #include <unistd.h>
 
 #include <sys/types.h>
 #include <netdb.h>
 #include <sys/time.h>
 #include <sys/ioctl.h>
+#include "busybox.h"
 
 int nc_main(int argc, char **argv)
 {
-       int sfd;
+       int do_listen = 0, lport = 0, tmpfd, opt, sfd;
        char buf[BUFSIZ];
 
        struct sockaddr_in address;
@@ -53,24 +50,55 @@ int nc_main(int argc, char **argv)
 
        fd_set readfds, testfds;
 
-       argc--;
-       argv++;
-       if (argc < 2 || **argv == '-') {
-               usage(nc_usage);
+       while ((opt = getopt(argc, argv, "lp:")) > 0) {
+               switch (opt) {
+                       case 'l':
+                               do_listen++;
+                               break;
+                       case 'p':
+                               lport = atoi(optarg);
+                               break;
+                       default:
+                               show_usage();
+               }
        }
 
+       if ((do_listen && optind != argc) || (!do_listen && optind + 2 != argc))
+               show_usage();
+
        if ((sfd = socket(AF_INET, SOCK_STREAM, 0)) < 0)
                perror_msg_and_die("socket");
 
-       if ((hostinfo = gethostbyname(*argv)) == NULL)
-               error_msg_and_die("cannot resolve %s\n", *argv);
-
        address.sin_family = AF_INET;
-       address.sin_addr = *(struct in_addr *) *hostinfo->h_addr_list;
-       address.sin_port = htons(atoi(*(++argv)));
 
-       if (connect(sfd, (struct sockaddr *) &address, sizeof(address)) < 0)
-               perror_msg_and_die("connect");
+       if (lport != 0) {
+               memset(&address.sin_addr, 0, sizeof(address.sin_addr));
+               address.sin_port = htons(lport);
+
+               if (bind(sfd, (struct sockaddr *) &address, sizeof(address)) < 0)
+                       perror_msg_and_die("bind");
+       }
+
+       if (do_listen) {
+               socklen_t addrlen = sizeof(address);
+
+               if (listen(sfd, 1) < 0)
+                       perror_msg_and_die("listen");
+
+               if ((tmpfd = accept(sfd, (struct sockaddr *) &address, &addrlen)) < 0)
+                       perror_msg_and_die("accept");
+
+               close(sfd);
+               sfd = tmpfd;
+       } else {
+               hostinfo = xgethostbyname(argv[optind]);
+
+               address.sin_addr = *(struct in_addr *) *hostinfo->h_addr_list;
+               address.sin_port = htons(atoi(argv[optind+1]));
+
+               if (connect(sfd, (struct sockaddr *) &address, sizeof(address)) < 0)
+                       perror_msg_and_die("connect");
+       }
 
        FD_ZERO(&readfds);
        FD_SET(sfd, &readfds);