httpd: sendfile support
[oweals/busybox.git] / networking / slattach.c
index 3495df5988da15ada3ee6ed144da38d7e2daab43..f78c88e89f67e297627a8fd6aa70010d3a603ef8 100644 (file)
 #include "libbb.h"
 #include "libiproute/utils.h" /* invarg() */
 
-/* Line discipline code table */
-static const char *const proto_names[] = {
-       "cslip"+1,      /* 0 */
-       "cslip",        /* 1 */
-       "cslip6"+1,     /* 2 */
-       "cslip6",       /* 3 */
-       "adaptive",     /* 8 */
-       NULL
-};
-
 struct globals {
        int handle;
        int saved_disc;
@@ -50,8 +40,7 @@ static void save_state(void)
                bb_perror_msg_and_die("get state");
 
        /* Save line discipline */
-       if (ioctl(handle, TIOCGETD, &saved_disc) < 0)
-               bb_perror_msg_and_die("get discipline");
+       xioctl(handle, TIOCGETD, &saved_disc);
 }
 
 static int set_termios_state_and_warn(struct termios *state)
@@ -81,8 +70,7 @@ static void restore_state_and_exit(int exitcode)
        struct termios state;
 
        /* Restore line discipline */
-       if (ioctl(handle, TIOCSETD, &saved_disc) < 0) {
-               bb_perror_msg("set discipline");
+       if (ioctl_or_warn(handle, TIOCSETD, &saved_disc) < 0) {
                exitcode = 1;
        }
 
@@ -115,14 +103,12 @@ static void set_state(struct termios *state, int encap)
                goto bad;
        /* Set line discliple (N_SLIP always) */
        disc = N_SLIP;
-       if (ioctl(handle, TIOCSETD, &disc) < 0) {
-               bb_perror_msg("set discipline");
+       if (ioctl_or_warn(handle, TIOCSETD, &disc) < 0) {
                goto bad;
        }
 
        /* Set encapsulation (SLIP, CSLIP, etc) */
-       if (ioctl(handle, SIOCSIFENCAP, &encap) < 0) {
-               bb_perror_msg("set encapsulation");
+       if (ioctl_or_warn(handle, SIOCSIFENCAP, &encap) < 0) {
  bad:
                restore_state_and_exit(1);
        }
@@ -136,6 +122,15 @@ static void sig_handler(int signo)
 int slattach_main(int argc, char **argv);
 int slattach_main(int argc, char **argv)
 {
+       /* Line discipline code table */
+       static const char proto_names[] ALIGN1 =
+               "slip\0"        /* 0 */
+               "cslip\0"       /* 1 */
+               "slip6\0"       /* 2 */
+               "cslip6\0"      /* 3 */
+               "adaptive\0"    /* 8 */
+               ;
+
        int i, encap, opt;
        struct termios state;
        const char *proto = "cslip";
@@ -164,7 +159,7 @@ int slattach_main(int argc, char **argv)
        if (!*argv)
                bb_show_usage();
 
-       encap = index_in_str_array(proto_names, proto);
+       encap = index_in_strings(proto_names, proto);
 
        if (encap < 0)
                invarg(proto, "protocol");