/* * udprelay.h - Define UDP relay's buffers and callbacks * * Copyright (C) 2013 - 2019, Max Lv * * This file is part of the shadowsocks-libev. * * shadowsocks-libev is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * shadowsocks-libev is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with shadowsocks-libev; see the file COPYING. If not, see * . */ #ifndef _UDPRELAY_H #define _UDPRELAY_H #include #ifdef HAVE_LIBEV_EV_H #include #else #include #endif #include "crypto.h" #include "jconf.h" #ifdef MODULE_REMOTE #include "resolv.h" #endif #include "cache.h" #include "common.h" #define MAX_UDP_PACKET_SIZE (65507) #define PACKET_HEADER_SIZE (1 + 28 + 2 + 64) #define DEFAULT_PACKET_SIZE 1397 // 1492 - PACKET_HEADER_SIZE = 1397, the default MTU for UDP relay #define MAX_ADDR_HEADER_SIZE (1 + 256 + 2) // 1-byte atyp + 256-byte hostname + 2-byte port typedef struct server_ctx { ev_io io; int fd; crypto_t *crypto; int timeout; const char *iface; struct cache *conn_cache; #ifdef MODULE_LOCAL const struct sockaddr *remote_addr; int remote_addr_len; #ifdef MODULE_TUNNEL ss_addr_t tunnel_addr; #endif #endif #ifdef MODULE_REMOTE struct ev_loop *loop; #endif } server_ctx_t; #ifdef MODULE_REMOTE typedef struct query_ctx { struct sockaddr_storage src_addr; buffer_t *buf; int addr_header_len; char addr_header[MAX_ADDR_HEADER_SIZE]; struct server_ctx *server_ctx; struct remote_ctx *remote_ctx; } query_ctx_t; #endif typedef struct remote_ctx { ev_io io; ev_timer watcher; int af; int fd; struct sockaddr_storage src_addr; #ifdef MODULE_REMOTE struct sockaddr_storage dst_addr; #endif struct server_ctx *server_ctx; } remote_ctx_t; #endif // _UDPRELAY_H