UNPKG
libpcap
Version:
latest (0.0.1)
0.0.1
Node bindings for libpcap
github.com/officert/node-libpcap
officert/node-libpcap
libpcap
/
src
/
js
/
enums
/
etherTypes.js
10 lines
(7 loc)
•
116 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
const
ETHER_TYPES
= {
IPV4
:
'IPV4'
,
IPV6
:
'IPV6'
,
ARP
:
'ARP'
};
module
.
exports
=
ETHER_TYPES
;