repo.or.cz
/
davej-history.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Import 2.3.25pre1
[davej-history.git]
/
include
/
linux
/
netbeui.h
blob
2fb2f71b40d6342b0494647b30e409b155094b9c
1
#ifndef _LINUX_NETBEUI_H
2
#define _LINUX_NETBEUI_H
3
4
#include <linux/if.h>
5
6
#define NB_NAME_LEN 20
/* Set this properly from the full docs when
7
I get them */
8
9
struct
sockaddr_netbeui
10
{
11
sa_family snb_family
;
12
char
snb_name
[
NB_NAME_LEN
];
13
char
snb_devhint
[
IFNAMSIZ
];
14
};
15
16
#endif