repo.or.cz
/
netsniff-ng.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
netsniff-ng: nlmsg: Display "(none)" instead of "()" for zero flags
[netsniff-ng.git]
/
oui.h
blob
564e4a1e5c77e750839ed028660b40452a40c7d8
1
#ifndef OUI_H
2
#define OUI_H
3
4
extern
const char
*
lookup_vendor
(
unsigned int
id
);
5
extern
void
dissector_init_oui
(
void
);
6
extern
void
dissector_cleanup_oui
(
void
);
7
8
static
inline
const char
*
lookup_vendor_str
(
unsigned int
id
)
9
{
10
return
lookup_vendor
(
id
) ? :
"Unknown"
;
11
}
12
13
#endif
/* OUI_H */