const several ptr args
authorPhilip Kovacs <pkovacs@users.sourceforge.net>
Mon, 5 Dec 2005 23:50:08 +0000 (23:50 +0000)
committerPhilip Kovacs <pkovacs@users.sourceforge.net>
Mon, 5 Dec 2005 23:50:08 +0000 (23:50 +0000)
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@437 7f574dfc-610e-0410-a909-a81674777703

src/libtcp-portmon.c
src/libtcp-portmon.h

index a843423..db3b89d 100644 (file)
@@ -37,7 +37,7 @@
  * ----------------------------------*/
 int copy_tcp_connection( 
        tcp_connection_t *                      p_dest_connection,
-       tcp_connection_t *                      p_source_connection
+       const tcp_connection_t *                p_source_connection
        )
 {
    if ( !p_dest_connection || !p_source_connection )
@@ -621,7 +621,7 @@ tcp_port_monitor_t * create_tcp_port_monitor(
    The requested monitor value is copied into a client-supplied char buffer.
    Returns 0 on success, -1 otherwise. */
 int peek_tcp_port_monitor(
-        tcp_port_monitor_t *                    p_monitor,
+        const tcp_port_monitor_t *              p_monitor,
         int                                     item,
         int                                     connection_index,
         char *                                  p_buffer,
@@ -902,7 +902,7 @@ int insert_tcp_port_monitor_into_collection(
 
 /* Clients need a way to find monitors */
 tcp_port_monitor_t * find_tcp_port_monitor( 
-       tcp_port_monitor_collection_t *         p_collection, 
+       const tcp_port_monitor_collection_t *   p_collection, 
        in_port_t                               port_range_begin,
        in_port_t                               port_range_end
        )
index c9f4aaf..6eb95b1 100644 (file)
@@ -103,7 +103,7 @@ typedef struct _tcp_connection_t {
  * ----------------------------------*/
 int copy_tcp_connection( 
        tcp_connection_t *                      /* p_dest_connection */,
-       tcp_connection_t *                      /* p_source_connection */
+       const tcp_connection_t *                /* p_source_connection */
        );
 
 /* ------------------------------------------------------------------------
@@ -269,7 +269,7 @@ tcp_port_monitor_t * create_tcp_port_monitor(
    The requested monitor value is copied into a client-supplied char buffer. 
    Returns 0 on success, -1 otherwise. */
 int peek_tcp_port_monitor(
-       tcp_port_monitor_t *                    /* p_monitor */,
+       const tcp_port_monitor_t *              /* p_monitor */,
        int                                     /* item, ( item of interest, from tcp_port_monitor_peekables enum ) */,
        int                                     /* connection_index, ( 0 to number of connections in monitor - 1 )*/,
        char *                                  /* p_buffer, buffer to receive requested value */,
@@ -304,7 +304,7 @@ int insert_tcp_port_monitor_into_collection(
 
 /* Clients need a way to find monitors */
 tcp_port_monitor_t * find_tcp_port_monitor( 
-       tcp_port_monitor_collection_t *         /* p_collection */, 
+       const tcp_port_monitor_collection_t *   /* p_collection */, 
        in_port_t                               /* port_range_begin */, 
        in_port_t                               /* port_range_end */ 
        );