~jan-kneschke/mysql-proxy/packet-tracking-assertions

« back to all changes in this revision

Viewing changes to tags/mysql-proxy-0.6.0/src/glib-ext.h

  • Committer: Kay Roepke
  • Author(s): Jan Kneschke
  • Date: 2008-01-23 22:00:28 UTC
  • Revision ID: kay@mysql.com-20080123220028-hq2xqb69apa75fnx
first round on mysql-shell based on the proxy code

this is mostly a verification if the proxy-code is flexible enough to handle 
all three scenarios of: client, server and forwarding (proxy)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _GLIB_EXT_H_
 
2
#define _GLIB_EXT_H_
 
3
 
 
4
#include <glib.h>
 
5
 
 
6
void     g_list_string_free(gpointer data, gpointer user_data);
 
7
 
 
8
gboolean g_hash_table_true(gpointer key, gpointer value, gpointer user_data);
 
9
guint    g_hash_table_string_hash(gconstpointer _key);
 
10
gboolean g_hash_table_string_equal(gconstpointer _a, gconstpointer _b);
 
11
void     g_hash_table_string_free(gpointer data);
 
12
 
 
13
GString *g_string_dup(GString *);
 
14
 
 
15
#endif