├── .gitignore ├── Makefile ├── README.md ├── binding.gyp ├── index.js ├── package.json ├── src ├── ethertypes.cc ├── ethertypes.hh ├── ethertypes.itm ├── module.cc ├── module.hh ├── tuntap-itf │ ├── tuntap-itf-linux.inc.cc │ ├── tuntap-itf.cc │ └── tuntap-itf.hh ├── tuntap.cc └── tuntap.hh └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarysec/node-tuntap/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarysec/node-tuntap/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarysec/node-tuntap/HEAD/binding.gyp -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarysec/node-tuntap/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarysec/node-tuntap/HEAD/package.json -------------------------------------------------------------------------------- /src/ethertypes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarysec/node-tuntap/HEAD/src/ethertypes.cc -------------------------------------------------------------------------------- /src/ethertypes.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarysec/node-tuntap/HEAD/src/ethertypes.hh -------------------------------------------------------------------------------- /src/ethertypes.itm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarysec/node-tuntap/HEAD/src/ethertypes.itm -------------------------------------------------------------------------------- /src/module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarysec/node-tuntap/HEAD/src/module.cc -------------------------------------------------------------------------------- /src/module.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarysec/node-tuntap/HEAD/src/module.hh -------------------------------------------------------------------------------- /src/tuntap-itf/tuntap-itf-linux.inc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarysec/node-tuntap/HEAD/src/tuntap-itf/tuntap-itf-linux.inc.cc -------------------------------------------------------------------------------- /src/tuntap-itf/tuntap-itf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarysec/node-tuntap/HEAD/src/tuntap-itf/tuntap-itf.cc -------------------------------------------------------------------------------- /src/tuntap-itf/tuntap-itf.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarysec/node-tuntap/HEAD/src/tuntap-itf/tuntap-itf.hh -------------------------------------------------------------------------------- /src/tuntap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarysec/node-tuntap/HEAD/src/tuntap.cc -------------------------------------------------------------------------------- /src/tuntap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarysec/node-tuntap/HEAD/src/tuntap.hh -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarysec/node-tuntap/HEAD/test.js --------------------------------------------------------------------------------