~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle-2.0/drizzle_client.h

  • Committer: Mark Atwood
  • Date: 2011-11-30 07:06:47 UTC
  • mfrom: (2463.1.6 drizzle-include)
  • Revision ID: me@mark.atwood.name-20111130070647-ixp7oalp70hkbt6l
mergeĀ lp:~brianaker/drizzle/libdrizzle-2.0-not-install

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
 * @return Same return as drizzle_con_create().
82
82
 */
83
83
DRIZZLE_API
84
 
drizzle_con_st *drizzle_con_add_tcp(drizzle_st *drizzle, drizzle_con_st *con,
 
84
drizzle_con_st *drizzle_con_add_tcp(drizzle_st *drizzle,
85
85
                                    const char *host, in_port_t port,
86
86
                                    const char *user, const char *password,
87
87
                                    const char *db,
101
101
 * @return Same return as drizzle_con_create().
102
102
 */
103
103
DRIZZLE_API
104
 
drizzle_con_st *drizzle_con_add_uds(drizzle_st *drizzle, drizzle_con_st *con,
 
104
drizzle_con_st *drizzle_con_add_uds(drizzle_st *drizzle,
105
105
                                    const char *uds, const char *user,
106
106
                                    const char *password, const char *db,
107
107
                                    drizzle_con_options_t options);