Removed the split feature of send.
[mmh] / uip / send.c
index 91f1c16..d1a183e 100644 (file)
@@ -49,8 +49,6 @@ static struct swit switches[] = {
        { "push", 0 },
 #define NPUSHSW  17
        { "nopush", 0 },
-#define SPLITSW  18
-       { "split seconds", 0 },
 #define UNIQSW  19
        { "unique", -6 },
 #define NUNIQSW  20
@@ -110,7 +108,6 @@ extern int debugsw;  /* from sendsbr.c */
 extern int forwsw;
 extern int inplace;
 extern int pushsw;
-extern int splitsw;
 extern int unique;
 extern int verbsw;
 
@@ -196,11 +193,6 @@ main (int argc, char **argv)
                                        pushsw = 0;
                                        continue;
 
-                               case SPLITSW:
-                                       if (!(cp = *argp++) || sscanf (cp, "%d", &splitsw) != 1)
-                                               adios (NULL, "missing argument to %s", argp[-2]);
-                                       continue;
-
                                case UNIQSW:
                                        unique++;
                                        continue;