|
|
|
@ -240,6 +240,7 @@ public final class httpdProxyHandler {
|
|
|
|
|
path = "$Path" "=" value
|
|
|
|
|
domain = "$Domain" "=" value
|
|
|
|
|
*/
|
|
|
|
|
if (switchboard.getConfigBool("proxy.monitorCookies", false)) {
|
|
|
|
|
if (requestHeader.containsKey(httpHeader.COOKIE)) {
|
|
|
|
|
Object[] entry = new Object[]{new Date(), clienthost, requestHeader.getMultiple(httpHeader.COOKIE)};
|
|
|
|
|
synchronized(switchboard.outgoingCookies) {
|
|
|
|
@ -247,6 +248,7 @@ public final class httpdProxyHandler {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void handleIncomingCookies(httpHeader respondHeader, String serverhost, String targetclient) {
|
|
|
|
|
/*
|
|
|
|
@ -264,6 +266,7 @@ public final class httpdProxyHandler {
|
|
|
|
|
| "Secure"
|
|
|
|
|
| "Version" "=" 1*DIGIT
|
|
|
|
|
*/
|
|
|
|
|
if (switchboard.getConfigBool("proxy.monitorCookies", false)) {
|
|
|
|
|
if (respondHeader.containsKey(httpHeader.SET_COOKIE)) {
|
|
|
|
|
Object[] entry = new Object[]{new Date(), targetclient, respondHeader.getMultiple(httpHeader.SET_COOKIE)};
|
|
|
|
|
synchronized(switchboard.incomingCookies) {
|
|
|
|
@ -271,6 +274,7 @@ public final class httpdProxyHandler {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param conProp a collection of properties about the connection, like URL
|
|
|
|
|