我已經搜索並找到了許多不同的資源,這些資源描述瞭如何獲得fiddler中的client IP地址。 public static BindUIColumn("ClientIP")
function CalcMethodColClientIP(oS: Session){
if (null != oS.oRequest) return oS.oFlags["X-ClientIP"]; els
這裏是我的代碼: var http = require('http');
function onRequest(req, res) {
// do something
}
var server = http.createServer(onRequest);
server.listen(8000);
console.log("The server is now running