2018-10-15 22:51:07 +00:00
|
|
|
/*-
|
|
|
|
* SSLsplit - transparent SSL/TLS interception
|
|
|
|
* https://www.roe.ch/SSLsplit
|
|
|
|
*
|
|
|
|
* Copyright (c) 2009-2018, Daniel Roethlisberger <daniel@roe.ch>.
|
2019-03-13 11:42:40 +00:00
|
|
|
* Copyright (c) 2017-2019, Soner Tari <sonertari@gmail.com>.
|
2018-10-15 22:51:07 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS ``AS IS''
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PROTOTCP_H
|
|
|
|
#define PROTOTCP_H
|
|
|
|
|
|
|
|
#include "pxyconn.h"
|
|
|
|
|
2018-10-19 12:03:36 +00:00
|
|
|
void prototcp_fd_readcb(evutil_socket_t, short, void *);
|
|
|
|
|
2019-03-06 19:43:43 +00:00
|
|
|
int prototcp_try_send_userauth_msg(struct bufferevent *, pxy_conn_ctx_t *) NONNULL(1,2);
|
|
|
|
int prototcp_try_close_unauth_conn(struct bufferevent *, pxy_conn_ctx_t *) NONNULL(1,2);
|
2019-03-05 22:09:02 +00:00
|
|
|
|
2018-10-17 23:00:49 +00:00
|
|
|
void prototcp_bev_writecb(struct bufferevent *, void *) NONNULL(1);
|
2018-10-17 13:28:21 +00:00
|
|
|
|
2018-10-17 23:00:49 +00:00
|
|
|
void prototcp_bev_eventcb_eof_src(struct bufferevent *, pxy_conn_ctx_t *) NONNULL(1,2);
|
|
|
|
void prototcp_bev_eventcb_error_src(struct bufferevent *, pxy_conn_ctx_t *) NONNULL(1,2);
|
2018-10-15 22:51:07 +00:00
|
|
|
|
2018-10-17 23:00:49 +00:00
|
|
|
void prototcp_bev_eventcb_eof_dst(struct bufferevent *, pxy_conn_ctx_t *) NONNULL(1,2);
|
|
|
|
void prototcp_bev_eventcb_error_dst(struct bufferevent *, pxy_conn_ctx_t *) NONNULL(1,2);
|
2018-10-15 22:51:07 +00:00
|
|
|
|
2018-10-22 13:12:07 +00:00
|
|
|
void prototcp_bev_eventcb_eof_srvdst(struct bufferevent *, pxy_conn_ctx_t *) NONNULL(1,2);
|
|
|
|
void prototcp_bev_eventcb_error_srvdst(struct bufferevent *, pxy_conn_ctx_t *) NONNULL(1,2);
|
2018-10-15 22:51:07 +00:00
|
|
|
|
2018-10-22 21:18:48 +00:00
|
|
|
void prototcp_bev_eventcb_src(struct bufferevent *, short, pxy_conn_ctx_t *) NONNULL(1,3);
|
2018-10-17 13:28:21 +00:00
|
|
|
|
2018-10-17 23:00:49 +00:00
|
|
|
void prototcp_bev_writecb_child(struct bufferevent *, void *) NONNULL(1);
|
2018-10-15 22:51:07 +00:00
|
|
|
|
2018-10-17 23:00:49 +00:00
|
|
|
void prototcp_bev_eventcb_eof_dst_child(struct bufferevent *, pxy_conn_child_ctx_t *) NONNULL(1,2);
|
|
|
|
void prototcp_bev_eventcb_error_dst_child(struct bufferevent *, pxy_conn_child_ctx_t *) NONNULL(1,2);
|
2018-10-15 22:51:07 +00:00
|
|
|
|
2018-10-22 21:18:48 +00:00
|
|
|
void prototcp_bev_eventcb_src_child(struct bufferevent *, short, pxy_conn_child_ctx_t *) NONNULL(1,3);
|
|
|
|
void prototcp_bev_eventcb_dst_child(struct bufferevent *, short, pxy_conn_child_ctx_t *) NONNULL(1,3);
|
2018-10-15 22:51:07 +00:00
|
|
|
|
2018-10-17 23:00:49 +00:00
|
|
|
int prototcp_setup_src(pxy_conn_ctx_t *) NONNULL(1);
|
|
|
|
int prototcp_setup_dst(pxy_conn_ctx_t *) NONNULL(1);
|
2018-10-22 13:12:07 +00:00
|
|
|
int prototcp_setup_srvdst(pxy_conn_ctx_t *) NONNULL(1);
|
2018-10-15 22:51:07 +00:00
|
|
|
|
2018-10-17 23:00:49 +00:00
|
|
|
int prototcp_setup_src_child(pxy_conn_child_ctx_t *) NONNULL(1);
|
|
|
|
int prototcp_setup_dst_child(pxy_conn_child_ctx_t *) NONNULL(1);
|
2018-10-15 22:51:07 +00:00
|
|
|
|
2018-10-17 23:00:49 +00:00
|
|
|
protocol_t prototcp_setup(pxy_conn_ctx_t *) NONNULL(1);
|
|
|
|
protocol_t prototcp_setup_child(pxy_conn_child_ctx_t *) NONNULL(1);
|
2018-10-15 22:51:07 +00:00
|
|
|
|
|
|
|
#endif /* PROTOTCP_H */
|
|
|
|
|