Skip to content

Commit

Permalink
lib-smtp: client: Moved smtp_client_init_ssl_ctx() from smtp-client.h…
Browse files Browse the repository at this point in the history
… to smtp-client-private.h.
  • Loading branch information
stephanbosch authored and villesavolainen committed Mar 12, 2018
1 parent de7ac2e commit 99ef56d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 6 additions & 0 deletions src/lib-smtp/smtp-client-private.h
Expand Up @@ -235,4 +235,10 @@ void smtp_client_connection_next_transaction(
struct smtp_client_connection *conn,
struct smtp_client_transaction *trans);

/*
* Client
*/

int smtp_client_init_ssl_ctx(struct smtp_client *client, const char **error_r);

#endif
1 change: 0 additions & 1 deletion src/lib-smtp/smtp-client.h
Expand Up @@ -94,6 +94,5 @@ struct smtp_client *smtp_client_init(const struct smtp_client_settings *set);
void smtp_client_deinit(struct smtp_client **_client);

void smtp_client_switch_ioloop(struct smtp_client *client);
int smtp_client_init_ssl_ctx(struct smtp_client *client, const char **error_r);

#endif

0 comments on commit 99ef56d

Please sign in to comment.