Displaying 2 results from an estimated 2 matches for "channel_connect_ctx_free".
2012 Oct 22
1
[PATCH] Implement remote dynamic TCP forwarding
...s(+), 45 deletions(-)
diff --git a/channels.c b/channels.c
index 7791feb..6e46229 100644
--- a/channels.c
+++ b/channels.c
@@ -172,6 +172,7 @@ static void port_open_helper(Channel *c, char *rtype);
/* non-blocking connect helpers */
static int connect_next(struct channel_connect *);
static void channel_connect_ctx_free(struct channel_connect *);
+static int connect_to_helper(const char *host, u_short port, struct channel_connect *cctx);
/* -- channel core */
@@ -209,6 +210,7 @@ channel_lookup(int id)
case SSH_CHANNEL_LARVAL:
case SSH_CHANNEL_CONNECTING:
case SSH_CHANNEL_DYNAMIC:
+ case SSH_CHANNEL_RDYN...
2024 Apr 23
3
[Bug 3682] New: incorrectly thinks that -fzero-call-used-regs should work
...host=arm-linux-gnueabihf` it gives this
indication in the output:
> checking if gcc supports compile flag -fzero-call-used-regs=used and linking succeeds... yes
However when I then run `make channels.o` it fails saying this. (same
with sshkey.o and a few others)
> channels.c: In function ?channel_connect_ctx_free?:
> channels.c:4666:1: sorry, unimplemented: ?-fzero-call-used-regs? not supported on this target
I suspect this is an issue with the current test script, most of the
files compile fine. But as is I am unable to compile openssh for arm
systems without manually removing that flag. (or check fro...