Displaying 4 results from an estimated 4 matches for "channel_cancel_rport_listen".
Did you mean:
channel_cancel_rport_listener
2006 May 15
0
[PATCH 6/12] bug fix: openssh-4.3p2 memory leak
cancel_address is allocated in packet_get_string and used in the call to
channel_cancel_rport_listener and then it goes out of scope. This patch
adds the xfree. This entire set of patches passed the regression tests
on my system. Resource leak bug found by Coverity.
Signed-off-by: Kylene Hall <kjhall at us.ibm.com>
---
serverloop.c | 1 +
1 files changed, 1 insertion(+)
diff -uprN ope...
2013 May 15
1
[PATCH] Expose remote forwarding ports as environment variable
...;%d", c->listening_port);
+ } else
+ offset += snprintf(&buf[offset], size - offset, " %d", c->listening_port);
+
+ if(offset >= size) {
+ error("Exceeded buffer space for remote forwarding ports listing");
+ break;
+ }
+ }
+
+ xfree(ports);
+}
+
int
channel_cancel_rport_listener(const char *host, u_short port)
{
Only in openssh-6.2p1.patched/: .channels.c.swp
diff -ru openssh-6.2p1/channels.h openssh-6.2p1.patched/channels.h
--- openssh-6.2p1/channels.h 2012-04-22 03:21:10.000000000 +0200
+++ openssh-6.2p1.patched/channels.h 2013-05-09 23:21:37.385423623 +0200
@@ -222,6...
2003 Nov 09
10
[Bug 756] sshd does not support global request cancel-tcpip-forward
http://bugzilla.mindrot.org/show_bug.cgi?id=756
Summary: sshd does not support global request cancel-tcpip-
forward
Product: Portable OpenSSH
Version: -current
Platform: All
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: sshd
AssignedTo: openssh-bugs at
2017 May 04
5
OpenSSH contract development / patch
On Thu, May 04, 2017 at 09:37:59AM +1000, Adam Eijdenberg wrote:
> Hi Devin, have you looked at using openssh certificates to help manage
[...]
> While the feature has been around for a while now (and is really
> useful), there doesn't seem to be huge amount of documentation around
> it. I found the following useful when getting a client of my running
Yeah, when I wrote about it