summaryrefslogtreecommitdiff
path: root/include/linux/netbeui.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@athlon.transmeta.com>2002-02-04 17:40:40 -0800
committerLinus Torvalds <torvalds@athlon.transmeta.com>2002-02-04 17:40:40 -0800
commit7a2deb32924142696b8174cdf9b38cd72a11fc96 (patch)
tree8ecc18f81fdb849254f39dc2e9fd77253319e1ec /include/linux/netbeui.h
Import changeset
Diffstat (limited to 'include/linux/netbeui.h')
-rw-r--r--include/linux/netbeui.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/linux/netbeui.h b/include/linux/netbeui.h
new file mode 100644
index 000000000000..2fb2f71b40d6
--- /dev/null
+++ b/include/linux/netbeui.h
@@ -0,0 +1,16 @@
+#ifndef _LINUX_NETBEUI_H
+#define _LINUX_NETBEUI_H
+
+#include <linux/if.h>
+
+#define NB_NAME_LEN 20 /* Set this properly from the full docs when
+ I get them */
+
+struct sockaddr_netbeui
+{
+ sa_family snb_family;
+ char snb_name[NB_NAME_LEN];
+ char snb_devhint[IFNAMSIZ];
+};
+
+#endif