add a lock icon for https request

This commit is contained in:
OttoMao
2014-11-05 16:15:17 +08:00
parent 45f99bcf31
commit f126ade929
9 changed files with 71 additions and 2 deletions

View File

@@ -115,6 +115,7 @@ function normalizeInfo(id,info){
singleRecord.reqHeader = info.req.headers;
singleRecord.startTime = info.startTime;
singleRecord.reqBody = info.reqBody || "";
singleRecord.protocol = info.protocol;
//res
if(info.endTime){

View File

@@ -31,6 +31,7 @@ function userRequestHandler(req,userRes){
host : host,
method : req.method,
path : path,
protocol : protocol,
url : protocol + "://" + host + path,
req : req,
startTime : new Date().getTime()