]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - include/snmp_client.h
Cleanup: zap CVS Id tags
[thirdparty/squid.git] / include / snmp_client.h
index 2b11a81e14c5c20f66a6b38fa69eb7b4858a2d02..b1f439b98674069c96a57ddea3bd2f401fc9494f 100644 (file)
@@ -1,5 +1,9 @@
-#ifndef _SNMP_CLIENT_H_
-#define _SNMP_CLIENT_H_
+/*
+ * $Id$
+ */
+
+#ifndef SQUID_SNMP_CLIENT_H
+#define SQUID_SNMP_CLIENT_H
 
 /*
  * snmp_client.h
 
                       All Rights Reserved
 
-Permission to use, copy, modify, and distribute this software and its 
-documentation for any purpose and without fee is hereby granted, 
+Permission to use, copy, modify, and distribute this software and its
+documentation for any purpose and without fee is hereby granted,
 provided that the above copyright notice appear in all copies and that
-both that copyright notice and this permission notice appear in 
+both that copyright notice and this permission notice appear in
 supporting documentation, and that the name of CMU not be
 used in advertising or publicity pertaining to distribution of the
-software without specific, written prior permission.  
+software without specific, written prior permission.
 
 CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
 ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
@@ -26,9 +30,9 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
 SOFTWARE.
 ******************************************************************/
 struct synch_state {
-    int        waiting;
+    int waiting;
     int status;
-/* status codes */
+    /* status codes */
 #define STAT_SUCCESS   0
 #define STAT_ERROR     1
 #define STAT_TIMEOUT 2
@@ -37,25 +41,25 @@ struct synch_state {
 };
 
 #ifdef __cplusplus
-extern "C" {
+extern "C"
+{
 #endif
 
-extern struct synch_state snmp_synch_state;
+    extern struct synch_state snmp_synch_state;
 
-/* Synchronize Input with Agent */
-int  snmp_synch_input(int, struct snmp_session *, int,
-                    struct snmp_pdu *, void *);
+    /* Synchronize Input with Agent */
+    int snmp_synch_input(int, struct snmp_session *, int,
+                         struct snmp_pdu *, void *);
 
-/* Synchronize Response with Agent */
-int  snmp_synch_response(struct snmp_session *, struct snmp_pdu *, 
-                       struct snmp_pdu **);
+    /* Synchronize Response with Agent */
+    int snmp_synch_response(struct snmp_session *, struct snmp_pdu *,
+                            struct snmp_pdu **);
 
-/* Synchronize Setup */
-void snmp_synch_setup(struct snmp_session *);
+    /* Synchronize Setup */
+    void snmp_synch_setup(struct snmp_session *);
 
 #ifdef __cplusplus
 }
 #endif
 
-#endif /* _SNMP_CLIENT_H_ */
-
+#endif                         /* SQUID_SNMP_CLIENT_H */