~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/connect.h

  • Committer: Brian Aker
  • Date: 2009-03-17 06:05:42 UTC
  • mfrom: (934.2.17 small-cleanups)
  • Revision ID: brian@tangent.org-20090317060542-a7ggj7l686cvxw31
Merge Jay

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#ifndef DRIZZLE_SERVER_CONNECT_H
27
27
#define DRIZZLE_SERVER_CONNECT_H
28
28
 
29
 
int check_user(Session *session, const char *passwd, uint32_t passwd_len, const char *db);
30
29
extern "C"
31
30
pthread_handler_t handle_one_connection(void *arg);
32
31
bool init_new_connection_handler_thread();
33
 
void time_out_user_resource_limits(Session *session, USER_CONN *uc);
34
 
void decrease_user_connections(USER_CONN *uc);
35
 
void session_init_client_charset(Session *session, uint32_t cs_number);
36
 
bool setup_connection_thread_globals(Session *session);
37
 
bool login_connection(Session *session);
38
 
void prepare_new_connection_state(Session* session);
39
 
void end_connection(Session *session);
40
32
 
41
33
#endif /* DRIZZLE_SERVER_CONNECT_H */