]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorAutomatic source maintenance <squidadm@squid-cache.org>
Fri, 14 Sep 2012 00:13:20 +0000 (18:13 -0600)
committerAutomatic source maintenance <squidadm@squid-cache.org>
Fri, 14 Sep 2012 00:13:20 +0000 (18:13 -0600)
12 files changed:
doc/debug-sections.txt
src/AuthReg.h
src/SquidIpc.h
src/SquidList.h
src/WinSvc.h
src/mime.h
src/multicast.h
src/peer_proxy_negotiate_auth.h
src/snmp_agent.h
src/snmp_core.h
src/urn.h
src/win32.h

index b40764ca3e84bd20f959f3f5d37b4e049263c484..04933e269998c1210e430c04d81a0bfaaa4932f8 100644 (file)
@@ -1,4 +1,5 @@
 
+section
 section --    CGI Cache Manager
 section --    External DISKD process implementation.
 section --    Refcount allocator
@@ -129,6 +130,7 @@ section 79    Squid-side DISKD I/O functions.
 section 79    Squid-side Disk I/O functions.
 section 79    Storage Manager COSS Interface
 section 79    Storage Manager UFS Interface
+section 79   Disk IO Routines
 section 80    WCCP Support
 section 81    CPU Profiling Routines
 section 81    Store HEAP Removal Policies
index 4662eba5cc7b19fff6ca51453792c27288f0c53b..f98f36d2cc12b3b5547b3db78d753f752fde82d7 100644 (file)
@@ -1,8 +1,8 @@
 #ifndef SQUID_AUTHREG_H_
 #define SQUID_AUTHREG_H_
 /*
- * DEBUG: section 
- * AUTHOR: 
+ * DEBUG: section
+ * AUTHOR:
  *
  * SQUID Web Proxy Cache          http://www.squid-cache.org/
  * ----------------------------------------------------------
  *
  */
 
-namespace Auth {
+namespace Auth
+{
 
 #if USE_AUTH
-    /// Initialize Auth subsystem
-    extern void Init(void);
+/// Initialize Auth subsystem
+extern void Init(void);
 #else /* USE_AUTH */
-    inline void Init(void) {} /* NOP if not USE_AUTH */
+inline void Init(void) {} /* NOP if not USE_AUTH */
 #endif /* USE_AUTH */
 
 } // namespace Auth
index 2a435ed5d865f774df74e321a2b42524d804e3b3..30fcd344a00ec0a6e1cbb967a2131c6559aebcdf 100644 (file)
  *
  */
 
-namespace Ip {
-  class Address;
+namespace Ip
+{
+class Address;
 }
 extern pid_t ipcCreate(int type,
-                             const char *prog,
-                             const char *const args[],
-                             const char *name,
-                             Ip::Address &local_addr,
-                             int *rfd,
-                             int *wfd,
-                             void **hIpc);
+                       const char *prog,
+                       const char *const args[],
+                       const char *name,
+                       Ip::Address &local_addr,
+                       int *rfd,
+                       int *wfd,
+                       void **hIpc);
 
 #endif /* SQUID_SQUIDIPC_H_ */
index 58595b8b24b4c2d8f88c55b611c4ddfb8306f122..ca8943aac69f07ebe04e2014c4944a29388c976e 100644 (file)
@@ -32,8 +32,9 @@
  *
  */
 
-class link_list {
-    public:
+class link_list
+{
+public:
     void *ptr;
     link_list *next;
 };
index 852bc155f5cb387837f85605ec742c23f3539f2e..595182a250ff0db8a02ce536f7c97e12fd360704 100644 (file)
@@ -29,7 +29,7 @@
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
- * 
+ *
  */
 
 #if _SQUID_WINDOWS_
index b7209ef6798a7ceaf892c8a8361680024911e102..621a2777da74c98d399c907816cf8d4764982f84 100644 (file)
@@ -1,6 +1,6 @@
 /*
- * DEBUG: section 
- * AUTHOR: 
+ * DEBUG: section
+ * AUTHOR:
  *
  * SQUID Web Proxy Cache          http://www.squid-cache.org/
  * ----------------------------------------------------------
index 66e4d6f0e57b2601c41a0f0c020886192adbbfec..5a7e53261d86535b47859fde6682d2f08b26d27c 100644 (file)
@@ -1,6 +1,6 @@
 /*
- * DEBUG: section 
- * AUTHOR: 
+ * DEBUG: section
+ * AUTHOR:
  *
  * SQUID Web Proxy Cache          http://www.squid-cache.org/
  * ----------------------------------------------------------
index 4d33c9e7445995746d7e7bfb4ece06619287a3f7..3e29bbb708450a170c78f211f52c10d04fc0c33c 100644 (file)
@@ -33,7 +33,7 @@
  */
 
 #if HAVE_AUTH_MODULE_NEGOTIATE && HAVE_KRB5 && HAVE_GSSAPI
-    /* upstream proxy authentication */
+/* upstream proxy authentication */
 SQUIDCEXTERN char *peer_proxy_negotiate_auth(char *principal_name, char *proxy);
 #endif
 
index 7440e1547b63ad27b4970ec6b8ac7717a82ac872..888183bc9a24114d02940aa20d43a086550f2a50 100644 (file)
@@ -1,8 +1,8 @@
 #ifndef SQUID_SNMP_AGENT_H_
 #define SQUID_SNMP_AGENT_H_
 /*
- * DEBUG: section 
- * AUTHOR: 
+ * DEBUG: section
+ * AUTHOR:
  *
  * SQUID Web Proxy Cache          http://www.squid-cache.org/
  * ----------------------------------------------------------
index 6ed52c62113de75ea797953de4995976c9aa34c7..f73f46f0b02e44a901ce9ba334d54e50b0a2f5fb 100644 (file)
@@ -10,8 +10,9 @@
 #include "comm/forward.h"
 #include "typedefs.h"
 
-namespace Ip {
-  class Address;
+namespace Ip
+{
+class Address;
 }
 class MemBuf;
 
index cd5f2dcdf73dd1dfd351146a1be4b70530e72082..217ac62fc83ebabca9ad521d7dccb023c5dcb6fa 100644 (file)
--- a/src/urn.h
+++ b/src/urn.h
@@ -1,6 +1,6 @@
 /*
- * DEBUG: section 
- * AUTHOR: 
+ * DEBUG: section
+ * AUTHOR:
  *
  * SQUID Web Proxy Cache          http://www.squid-cache.org/
  * ----------------------------------------------------------
index b875c09dc81d5dd1fa4a39a91aef5466417201e3..569d1e2fa2df5b60f49201f2a992293b8f5b0fa1 100644 (file)
@@ -30,7 +30,7 @@
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
- * 
+ *
  */
 
 #if _SQUID_MSWIN_