Browse Source

Library interface to start ss local with a callback

pull/1833/head
alberto lalama 7 years ago
parent
commit
70ea7c2e27
2 changed files with 29 additions and 1 deletions
  1. 18
      src/local.c
  2. 12
      src/shadowsocks.h

18
src/local.c

@ -1722,7 +1722,7 @@ main(int argc, char **argv)
#else #else
int int
start_ss_local_server(profile_t profile)
_start_ss_local_server(profile_t profile, ss_local_callback callback, void *udata)
{ {
srand(time(NULL)); srand(time(NULL));
@ -1831,6 +1831,10 @@ start_ss_local_server(profile_t profile)
// Init connections // Init connections
cork_dllist_init(&connections); cork_dllist_init(&connections);
if (callback) {
callback(listen_ctx.fd, udp_fd, udata);
}
// Enter the loop // Enter the loop
ev_run(loop, 0); ev_run(loop, 0);
@ -1852,4 +1856,16 @@ start_ss_local_server(profile_t profile)
return 0; return 0;
} }
int
start_ss_local_server(profile_t profile)
{
return _start_ss_local_server(profile, NULL, NULL);
}
int
start_ss_local_server_with_callback(profile_t profile, ss_local_callback callback, void *udata)
{
return _start_ss_local_server(profile, callback, udata);
}
#endif #endif

12
src/shadowsocks.h

@ -64,6 +64,8 @@ typedef struct {
extern "C" { extern "C" {
#endif #endif
typedef void (*ss_local_callback) (int socks_fd, int udp_fd, void *data);
/* /*
* Create and start a shadowsocks local server. * Create and start a shadowsocks local server.
* *
@ -77,6 +79,16 @@ extern "C" {
*/ */
int start_ss_local_server(profile_t profile); int start_ss_local_server(profile_t profile);
/*
* Create and start a shadowsocks local server, specifying a callback.
*
* The callback is invoked when the local server has started successfully. It passes the SOCKS
* server and UDP relay file descriptors, along with any supplied user data.
*
* Returns -1 on failure.
*/
int start_ss_local_server_with_callback(profile_t profile, ss_local_callback callback, void *udata);
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif

Loading…
Cancel
Save