Skip to content

Commit

Permalink
lib-auth: Move struct auth_client_request from auth-client-request.c …
Browse files Browse the repository at this point in the history
…to auth-client-private.h.
  • Loading branch information
stephanbosch committed Feb 3, 2019
1 parent 0fc54cb commit 40c1ed5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
11 changes: 11 additions & 0 deletions src/lib-auth/auth-client-private.h
Expand Up @@ -5,6 +5,17 @@

#define AUTH_CONNECT_TIMEOUT_MSECS (30*1000)

struct auth_client_request {
pool_t pool;

struct auth_server_connection *conn;
unsigned int id;
time_t created;

auth_request_callback_t *callback;
void *context;
};

struct auth_server_connection {
pool_t pool;

Expand Down
11 changes: 0 additions & 11 deletions src/lib-auth/auth-client-request.c
Expand Up @@ -6,17 +6,6 @@
#include "ostream.h"
#include "auth-client-private.h"

struct auth_client_request {
pool_t pool;

struct auth_server_connection *conn;
unsigned int id;
time_t created;

auth_request_callback_t *callback;
void *context;
};

static void auth_server_send_new_request(struct auth_server_connection *conn,
struct auth_client_request *request,
const struct auth_request_info *info)
Expand Down

0 comments on commit 40c1ed5

Please sign in to comment.