~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to system/include/net/if.h

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-09-20 22:44:35 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20130920224435-apuwj4fsl3fqv1a6
Tags: 1.5.6~20130920~6010666-1
* New snapshot release
* Update the list of supported architectures to the same as libv8
  (Closes: #723129)
* emlibtool has been removed from upstream.
* Fix warning syntax-error-in-dep5-copyright
* Refresh of the patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
struct if_nameindex *if_nameindex();
78
78
void                 if_freenameindex(struct if_nameindex *a);
79
79
 
80
 
 
 
80
#define IFF_UP          0x1
 
81
#define IFF_BROADCAST   0x2
 
82
#define IFF_DEBUG       0x4
 
83
#define IFF_LOOPBACK    0x8
 
84
#define IFF_POINTOPOINT 0x10
 
85
#define IFF_NOTRAILERS  0x20
 
86
#define IFF_RUNNING     0x40
 
87
#define IFF_NOARP       0x80
 
88
#define IFF_PROMISC     0x100
 
89
#define IFF_ALLMULTI    0x200
 
90
#define IFF_MASTER      0x400
 
91
#define IFF_SLAVE       0x800
 
92
#define IFF_MULTICAST   0x1000
 
93
#define IFF_PORTSEL     0x2000
 
94
#define IFF_AUTOMEDIA   0x4000
 
95
#define IFF_DYNAMIC     0x8000
 
96
#define IFF_LOWER_UP    0x10000
 
97
#define IFF_DORMANT     0x20000
 
98
#define IFF_ECHO        0x40000
 
99
#define IFF_VOLATILE    (IFF_LOOPBACK|IFF_POINTOPOINT|IFF_BROADCAST|IFF_ECHO|IFF_MASTER|IFF_SLAVE|IFF_RUNNING|IFF_LOWER_UP|IFF_DORMANT)
81
100
 
82
101
#ifdef __cplusplus
83
102
}