--------------------- PatchSet 8998 Date: 2007/03/11 02:20:32 Author: hno Branch: http11 Tag: (none) Log: indented Members: src/client_side.c:1.154.2.13->1.154.2.14 src/store.c:1.39.2.3->1.39.2.4 src/structs.h:1.136.6.7->1.136.6.8 Index: squid/src/client_side.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/client_side.c,v retrieving revision 1.154.2.13 retrieving revision 1.154.2.14 diff -u -r1.154.2.13 -r1.154.2.14 --- squid/src/client_side.c 11 Mar 2007 02:16:02 -0000 1.154.2.13 +++ squid/src/client_side.c 11 Mar 2007 02:20:32 -0000 1.154.2.14 @@ -1,6 +1,6 @@ /* - * $Id: client_side.c,v 1.154.2.13 2007/03/11 02:16:02 hno Exp $ + * $Id: client_side.c,v 1.154.2.14 2007/03/11 02:20:32 hno Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -183,7 +183,7 @@ http->header_callback(data, http->header_entry->mem_obj->reply); } void -storeClientCopyHeaders(store_client *sc, StoreEntry *e, STHCB *callback, void *callback_data) +storeClientCopyHeaders(store_client * sc, StoreEntry * e, STHCB * callback, void *callback_data) { clientHttpRequest *http = callback_data; http->header_callback = callback; @@ -714,7 +714,7 @@ } static void -clientHandleETagReply(void *data, HttpReply *rep) +clientHandleETagReply(void *data, HttpReply * rep) { clientHttpRequest *http = data; StoreEntry *entry = http->entry; @@ -926,7 +926,7 @@ static void -clientHandleIMSReply(void *data, HttpReply *rep) +clientHandleIMSReply(void *data, HttpReply * rep) { clientHttpRequest *http = data; StoreEntry *entry = http->entry; @@ -1547,7 +1547,7 @@ if (http->conn->port->http11) http_ver = request->http_ver; else - httpBuildVersion(&http_ver, 1, 0); /* we are HTTP/1.0, no matter what the client requests... */ + httpBuildVersion(&http_ver, 1, 0); /* we are HTTP/1.0, no matter what the client requests... */ if (httpMsgIsPersistent(http_ver, req_hdr)) request->flags.proxy_keepalive = 1; } @@ -2006,7 +2006,7 @@ * be. */ static HttpReply * -clientCloneReply(clientHttpRequest * http, HttpReply *orig_rep) +clientCloneReply(clientHttpRequest * http, HttpReply * orig_rep) { HttpReply *rep = NULL; /* If we don't have a memobj / reply by now then we're stuffed */ @@ -2072,7 +2072,7 @@ * clientProcessMiss. */ static void -clientCacheHit(void *data, HttpReply *rep) +clientCacheHit(void *data, HttpReply * rep) { clientHttpRequest *http = data; StoreEntry *e = http->entry; @@ -2542,7 +2542,7 @@ * such, writes processed message to the client's socket */ static void -clientSendHeaders(void *data, HttpReply *rep) +clientSendHeaders(void *data, HttpReply * rep) { clientHttpRequest *http = data; StoreEntry *entry = http->entry; @@ -3002,7 +3002,7 @@ comm_close(fd); } else if (http->request->flags.chunked_response) { /* Finish chunked transfer encoding */ - http->request->flags.chunked_response = 0; /* no longer chunking */ + http->request->flags.chunked_response = 0; /* no longer chunking */ comm_write(http->conn->fd, "0\r\n\r\n", 5, clientWriteComplete, http, NULL); } else if (http->request->body_reader == clientReadBody) { debug(33, 5) ("clientWriteComplete: closing, but first we need to read the rest of the request\n"); Index: squid/src/store.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/store.c,v retrieving revision 1.39.2.3 retrieving revision 1.39.2.4 diff -u -r1.39.2.3 -r1.39.2.4 --- squid/src/store.c 11 Mar 2007 02:16:05 -0000 1.39.2.3 +++ squid/src/store.c 11 Mar 2007 02:20:33 -0000 1.39.2.4 @@ -1,6 +1,6 @@ /* - * $Id: store.c,v 1.39.2.3 2007/03/11 02:16:05 hno Exp $ + * $Id: store.c,v 1.39.2.4 2007/03/11 02:20:33 hno Exp $ * * DEBUG: section 20 Storage Manager * AUTHOR: Harvest Derived @@ -126,7 +126,7 @@ } int -memHaveHeaders(const MemObject *mem) +memHaveHeaders(const MemObject * mem) { if (!mem) return 0; Index: squid/src/structs.h =================================================================== RCS file: /cvsroot/squid-sf//squid/src/structs.h,v retrieving revision 1.136.6.7 retrieving revision 1.136.6.8 diff -u -r1.136.6.7 -r1.136.6.8 --- squid/src/structs.h 11 Mar 2007 02:16:06 -0000 1.136.6.7 +++ squid/src/structs.h 11 Mar 2007 02:20:34 -0000 1.136.6.8 @@ -1,6 +1,6 @@ /* - * $Id: structs.h,v 1.136.6.7 2007/03/11 02:16:06 hno Exp $ + * $Id: structs.h,v 1.136.6.8 2007/03/11 02:20:34 hno Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -1841,7 +1841,7 @@ #endif unsigned int collapsed:1; /* This request was collapsed. Don't trust the store entry to be valid */ unsigned int cache_validation:1; /* This request is an internal cache validation */ - unsigned int chunked_response:1; /* Send the response using chunked encoding */ + unsigned int chunked_response:1; /* Send the response using chunked encoding */ }; struct _link_list {