This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Sending a TCP SYN packet properly using the raw-socket package. | |
*/ | |
var raw = require('raw-socket'); | |
var crypto = require('crypto'); | |
// create a raw socket using TCP | |
var s = raw.createSocket({ | |
protocol: raw.Protocol.TCP | |
}); |