Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions proxy/http/HttpClientSession.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,23 +79,23 @@ class HttpClientSession : public ProxyClientSession
set_half_close_flag()
{
half_close = true;
};
}
void
clear_half_close_flag()
{
half_close = false;
};
}
bool
get_half_close_flag() const
{
return half_close;
};
}
virtual void release(IOBufferReader *r);
virtual NetVConnection *
get_netvc() const
{
return client_vc;
};
}
virtual void
release_netvc()
{
Expand All @@ -107,7 +107,7 @@ class HttpClientSession : public ProxyClientSession
get_server_session() const
{
return bound_ss;
};
}

// Used for the cache authenticated HTTP content feature
HttpServerSession *get_bound_ss();
Expand Down
2 changes: 1 addition & 1 deletion proxy/http/HttpSM.h
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ class HttpSM : public Continuation
get_tunnel()
{
return &tunnel;
};
}

// Debugging routines to dump the SM history, hdrs
void dump_state_on_assert();
Expand Down
4 changes: 0 additions & 4 deletions proxy/http/HttpTransact.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7299,12 +7299,8 @@ HttpTransact::what_is_document_freshness(State *s, HTTPHdr *client_request, HTTP
{
bool heuristic, do_revalidate = false;
int age_limit;
// These aren't used.
// HTTPValCacheControl *cc;
// const char *cc_val;
int fresh_limit;
ink_time_t current_age, response_date;
;
uint32_t cc_mask, cooked_cc_mask;
uint32_t os_specifies_revalidate;

Expand Down