~ubuntu-branches/ubuntu/trusty/busybox/trusty

« back to all changes in this revision

Viewing changes to networking/vconfig.c

  • Committer: Scott Moser
  • Date: 2011-05-27 16:06:28 UTC
  • mfrom: (68.1.6 oneiric)
  • Revision ID: smoser@ubuntu.com-20110527160628-t1lo3pfw92ef8vnf
* Resynchronise with Debian (LP: #788888).  Remaining changes:
  - [udeb] Enable chvt, getopt (and -l), killall, losetup, NFS
    mount, od, ping, stat, and remote syslog.
  - [deb] Enable mdev.
  - [deb, static] Enable fractional sleep and CGI support for httpd.
  - Enable 'mount -f' and mount helpers for all targets.
  - Add busybox-initramfs.
  - test-bin.patch: Move test and friends to /bin.
  - static-sh-alias.patch: Add static-sh alias name for ash, and install
    /bin/static-sh symlink to busybox in busybox-static.
  - Add cross-compiling support.
* grep-o-loop.patch: dropped as fix and testcase in upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 *
5
5
 * Copyright (C) 2001  Manuel Novoa III  <mjn3@codepoet.org>
6
6
 *
7
 
 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
 
7
 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8
8
 */
9
9
 
10
10
/* BB_AUDIT SUSv3 N/A */
47
47
        short vlan_qos;
48
48
};
49
49
 
50
 
#define VLAN_GROUP_ARRAY_LEN 4096
51
 
#define SIOCSIFVLAN     0x8983          /* Set 802.1Q VLAN options */
 
50
#define VLAN_GROUP_ARRAY_LEN  4096
 
51
#define SIOCSIFVLAN           0x8983  /* Set 802.1Q VLAN options */
52
52
 
53
53
/* On entry, table points to the length of the current string
54
54
 * plus NUL terminator plus data length for the subsequent entry.