diff options
author | David Härdeman <david@hardeman.nu> | 2020-06-11 23:25:38 +0200 |
---|---|---|
committer | David Härdeman <david@hardeman.nu> | 2020-06-11 23:25:38 +0200 |
commit | b860471279dfd3ec4dcdba9c02b7886869459ec8 (patch) | |
tree | 5c7d9311d7018922a634abaa23ae35f56de8dbb5 | |
parent | ea836c09048453babda517e6a440d7266304ca02 (diff) |
Oops....fixup connect_any callback throughout
-rw-r--r-- | proxy.c | 4 | ||||
-rw-r--r-- | utils.c | 4 | ||||
-rw-r--r-- | utils.h | 4 |
3 files changed, 6 insertions, 6 deletions
@@ -183,11 +183,11 @@ proxy_server_data_in(struct cfg *cfg, struct uring_task *task, int res) } static void -proxy_connected_cb(struct cfg *cfg, struct connection *conn, int res) +proxy_connected_cb(struct cfg *cfg, struct connection *conn, bool connected) { struct server_proxy *proxy = container_of(conn, struct server_proxy, server_conn); - if (res < 0) { + if (!connected) { fprintf(stderr, "%s: proxy connection to remote server failed\n", proxy->scfg->name); proxy_delete(cfg, proxy); @@ -202,7 +202,7 @@ void connection_set_remote(struct cfg *cfg, struct connection *conn, struct sockaddr_in46 *remote) { conn->remote = *remote; - sockaddr_to_str(&conn->remote, &conn->remotestr, sizeof(conn->remotestr)); + sockaddr_to_str(&conn->remote, conn->remotestr, sizeof(conn->remotestr)); } static void connect_next(struct cfg *cfg, struct uring_task *task, struct connection *conn); @@ -273,7 +273,7 @@ again: void connect_any(struct cfg *cfg, struct uring_task *task, struct list_head *addrs, struct connection *conn, - void (*callback)(struct cfg *, struct connection *, int res)) + void (*callback)(struct cfg *, struct connection *, bool res)) { if (!cfg || !task || !addrs || !conn || !callback) { fprintf(stderr, "%s: invalid arguments\n", __func__); @@ -45,7 +45,7 @@ struct connection { struct list_head *addrs; unsigned next_addr; - void (*callback)(struct cfg *, struct connection *, int res); + void (*callback)(struct cfg *, struct connection *, bool); }; struct uring_task; @@ -59,7 +59,7 @@ void connection_set_remote(struct cfg *cfg, struct connection *conn, void connect_any(struct cfg *cfg, struct uring_task *task, struct list_head *addrs, struct connection *conn, - void (*callback)(struct cfg *, struct connection *, int res)); + void (*callback)(struct cfg *, struct connection *, bool)); uint16_t sockaddr_port(struct sockaddr_in46 *addr); |