You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by am...@apache.org on 2010/11/20 16:18:01 UTC

svn commit: r1037236 - in /trafficserver/traffic/branches/wccp: configure.ac proxy/InkAPI.cc proxy/Makefile.am proxy/hdrs/HTTP.h proxy/http2/HttpTransact.cc proxy/wccp/WccpUtil.h

Author: amc
Date: Sat Nov 20 15:18:01 2010
New Revision: 1037236

URL: http://svn.apache.org/viewvc?rev=1037236&view=rev
Log:
Checkpoint before change to tsconfig for WCCP.

Modified:
    trafficserver/traffic/branches/wccp/configure.ac
    trafficserver/traffic/branches/wccp/proxy/InkAPI.cc
    trafficserver/traffic/branches/wccp/proxy/Makefile.am
    trafficserver/traffic/branches/wccp/proxy/hdrs/HTTP.h
    trafficserver/traffic/branches/wccp/proxy/http2/HttpTransact.cc
    trafficserver/traffic/branches/wccp/proxy/wccp/WccpUtil.h

Modified: trafficserver/traffic/branches/wccp/configure.ac
URL: http://svn.apache.org/viewvc/trafficserver/traffic/branches/wccp/configure.ac?rev=1037236&r1=1037235&r2=1037236&view=diff
==============================================================================
--- trafficserver/traffic/branches/wccp/configure.ac (original)
+++ trafficserver/traffic/branches/wccp/configure.ac Sat Nov 20 15:18:01 2010
@@ -1225,6 +1225,7 @@ AC_CONFIG_FILES([proxy/mgmt2/tools/Makef
 AC_CONFIG_FILES([proxy/mgmt2/utils/Makefile])
 AC_CONFIG_FILES([proxy/mgmt2/web2/Makefile])
 AC_CONFIG_FILES([proxy/stats/Makefile])
+AC_CONFIG_FILES([proxy/tsconfig/Makefile])
 AC_CONFIG_FILES([proxy/wccp/Makefile])
 AC_CONFIG_FILES([example/Makefile])
 # example plugins

Modified: trafficserver/traffic/branches/wccp/proxy/InkAPI.cc
URL: http://svn.apache.org/viewvc/trafficserver/traffic/branches/wccp/proxy/InkAPI.cc?rev=1037236&r1=1037235&r2=1037236&view=diff
==============================================================================
--- trafficserver/traffic/branches/wccp/proxy/InkAPI.cc (original)
+++ trafficserver/traffic/branches/wccp/proxy/InkAPI.cc Sat Nov 20 15:18:01 2010
@@ -5249,6 +5249,7 @@ INKHttpTxnClientReqGet(INKHttpTxn txnp, 
     *bufp = hptr;
     *obj = hptr->m_http;
     sdk_sanity_check_mbuffer(*bufp);
+    hptr->mark_target_dirty();
 
     return 1;
   } else {

Modified: trafficserver/traffic/branches/wccp/proxy/Makefile.am
URL: http://svn.apache.org/viewvc/trafficserver/traffic/branches/wccp/proxy/Makefile.am?rev=1037236&r1=1037235&r2=1037236&view=diff
==============================================================================
--- trafficserver/traffic/branches/wccp/proxy/Makefile.am (original)
+++ trafficserver/traffic/branches/wccp/proxy/Makefile.am Sat Nov 20 15:18:01 2010
@@ -22,7 +22,7 @@ noinst_LIBRARIES = libTrafficServerStand
 bin_PROGRAMS =
 noinst_PROGRAMS =
 else
-SUBDIRS = congest http2 hdrs logging wccp mgmt2 config stats
+SUBDIRS = congest http2 hdrs logging tsconfig wccp mgmt2 config stats
 noinst_LIBRARIES =
 bin_PROGRAMS = \
   traffic_server \

Modified: trafficserver/traffic/branches/wccp/proxy/hdrs/HTTP.h
URL: http://svn.apache.org/viewvc/trafficserver/traffic/branches/wccp/proxy/hdrs/HTTP.h?rev=1037236&r1=1037235&r2=1037236&view=diff
==============================================================================
--- trafficserver/traffic/branches/wccp/proxy/hdrs/HTTP.h (original)
+++ trafficserver/traffic/branches/wccp/proxy/hdrs/HTTP.h Sat Nov 20 15:18:01 2010
@@ -574,7 +574,7 @@ public:
   URL *url_get(URL * url);
   /** Get a string with the effective URL in it.
       If @a length is not @c NULL then the length of the string
-      is stored in pointed to @c int.
+      is stored in the int pointed to by @a length.
 
       Note that this can be different from getting the @c URL
       and invoking @c URL::string_get if the host is in a header

Modified: trafficserver/traffic/branches/wccp/proxy/http2/HttpTransact.cc
URL: http://svn.apache.org/viewvc/trafficserver/traffic/branches/wccp/proxy/http2/HttpTransact.cc?rev=1037236&r1=1037235&r2=1037236&view=diff
==============================================================================
--- trafficserver/traffic/branches/wccp/proxy/http2/HttpTransact.cc (original)
+++ trafficserver/traffic/branches/wccp/proxy/http2/HttpTransact.cc Sat Nov 20 15:18:01 2010
@@ -5990,7 +5990,6 @@ HttpTransact::initialize_state_variables
       s->hdr_info.trust_response_cl = false;
     }
   }
-
   initialize_bypass_variables(s);
 
   if (incoming_response->presence(MIME_PRESENCE_TRANSFER_ENCODING)) {

Modified: trafficserver/traffic/branches/wccp/proxy/wccp/WccpUtil.h
URL: http://svn.apache.org/viewvc/trafficserver/traffic/branches/wccp/proxy/wccp/WccpUtil.h?rev=1037236&r1=1037235&r2=1037236&view=diff
==============================================================================
--- trafficserver/traffic/branches/wccp/proxy/wccp/WccpUtil.h (original)
+++ trafficserver/traffic/branches/wccp/proxy/wccp/WccpUtil.h Sat Nov 20 15:18:01 2010
@@ -16,8 +16,8 @@ namespace Wccp {
 //@{
 extern ats::Errata::Code LVL_FATAL; ///< Fatal, cannot continue.
 extern ats::Errata::Code LVL_WARN; ///< Significant, function degraded.
-extern ats::Errata::Code LVL_INFO; /// Interesting, not necessarily a problem.
-extern ats::Errata::Code LVL_DEBUG; /// Debugging information.
+extern ats::Errata::Code LVL_INFO; ///< Interesting, not necessarily a problem.
+extern ats::Errata::Code LVL_DEBUG; ///< Debugging information.
 //@}
 
 /** Logging / reporting support.