summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfadhil riyanto <me@fadev.org>2024-09-26 16:59:12 +0700
committerfadhil riyanto <me@fadev.org>2024-09-26 16:59:12 +0700
commitf3f4e1a7266ec623c1c54d7fd5062aeb269a80c8 (patch)
tree2fdca44f4af9a46935457e5da91be721fa2f2fee
parent5c6a8e3637e401c79cf13389132f017e61d71736 (diff)
change getopt params
Signed-off-by: fadhil riyanto <me@fadev.org>
-rw-r--r--main.c64
1 files changed, 37 insertions, 27 deletions
diff --git a/main.c b/main.c
index d76fab3..c0dec07 100644
--- a/main.c
+++ b/main.c
@@ -7,55 +7,60 @@
#define dbgchr(x) log_info("%c", x)
-enum tcpf_mode {
+#define MAX_CLIENTS 10;
+
+enum tcpf_mode {
TCPF_SERVER,
TCPF_CLIENT
};
+struct poll_queue {
+ pthread_mutex_t lock;
+ uint32_t ids;
+};
+
struct runtime_opts {
- enum tcpf_mode mode;
- uint16_t srcport;
- uint16_t destport;
+ // enum tcpf_mode mode;
+ // uint16_t srcport;
+ uint16_t listenport;
};
+static void review_config(struct runtime_opts *r_opts)
+{
+ // printf("dest: %u\n", r_opts->destport);
+ // printf("src: %u\n", r_opts->srcport);
+ // printf("%s\n", (r_opts->mode == TCPF_SERVER ? "SERVER" : "CLIENT"));
+ printf("socks5 server listen at %u\n", r_opts->listenport);
+}
+
+static int main_server(struct runtime_opts *r_opts)
+{
+ review_config(r_opts);
+
+
+}
+
static int parseopt(int argc, char **argv, struct runtime_opts *r_opts)
{
int optcounter = 0;
int c = 0;
static struct option opt_table[] = {
- {"mode", required_argument, 0, 'm'},
- {"srcport", required_argument, 0, 's'},
- {"destport", required_argument, 0, 'd'},
- // {"mode", required_argument, 0, 'm'},4
+ {"listen", required_argument, 0, 'l'},
{0, 0, 0, 0}
};
while(1) {
- c = getopt_long(argc, argv, "m:s:d:", opt_table, &optcounter);
- // dbgchr(c);
+ c = getopt_long(argc, argv, "l", opt_table, &optcounter);
if (c == -1)
break;
-
switch (c) {
- case 'm':
- if (strcmp(optarg, "server") == 0) {
- r_opts->mode = TCPF_SERVER;
- }
-
- if (strcmp(optarg, "client") == 0) {
- r_opts->mode = TCPF_CLIENT;
- }
- break;
-
- case 's':
- r_opts->srcport = atoi(optarg);
- break;
+
- case 'd':
- r_opts->destport = atoi(optarg);
+ case 'l':
+ r_opts->listenport = atoi(optarg);
break;
}
@@ -67,9 +72,14 @@ static int parseopt(int argc, char **argv, struct runtime_opts *r_opts)
int main(int argc, char **argv)
{
+ short ret = 0;
struct runtime_opts runtime_opts;
parseopt(argc, argv, &runtime_opts);
- return 0;
+ // if (runtime_opts.mode == TCPF_SERVER) {
+ ret = main_server(&runtime_opts);
+ // }
+
+ return ret;
} \ No newline at end of file