Updated Branches: refs/heads/master 574d45a6c -> e70a7c878
The http filter on Illumos is going to be put back as httpfilt, not httpf. This is in OmniOS already. Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/e70a7c87 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/e70a7c87 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/e70a7c87 Branch: refs/heads/master Commit: e70a7c878e625b8b89c1bce0ae910ead6d6ee763 Parents: 574d45a Author: Theo Schlossnagle <[email protected]> Authored: Wed Apr 18 09:05:32 2012 -0400 Committer: Theo Schlossnagle <[email protected]> Committed: Wed Apr 18 09:05:32 2012 -0400 ---------------------------------------------------------------------- iocore/net/Connection.cc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/e70a7c87/iocore/net/Connection.cc ---------------------------------------------------------------------- diff --git a/iocore/net/Connection.cc b/iocore/net/Connection.cc index 1dbbe12..d3bf2ca 100644 --- a/iocore/net/Connection.cc +++ b/iocore/net/Connection.cc @@ -139,7 +139,7 @@ static int add_http_filter(int fd) { int err = -1; #if defined(SOL_FILTER) && defined(FIL_ATTACH) - err = setsockopt(fd, SOL_FILTER, FIL_ATTACH, "httpf", 6); + err = setsockopt(fd, SOL_FILTER, FIL_ATTACH, "httpfilt", 9); #endif return err; }
