Displaying 6 results from an estimated 6 matches for "hpdelim".
2010 Mar 11
6
[Bug 1734] New: IPv6 address in port forward options (-L) requires square brackets
https://bugzilla.mindrot.org/show_bug.cgi?id=1734
Summary: IPv6 address in port forward options (-L) requires
square brackets
Product: Portable OpenSSH
Version: 5.4p1
Platform: All
OS/Version: All
Status: NEW
Severity: minor
Priority: P2
Component: ssh
AssignedTo:
2015 Jan 09
12
[Bug 2335] New: Config parser accepts ip/port in ListenAddress and PermitOpen
...reat example is our bugzilla [1].
Shortly problem was using ListenAddress 192.168.1.0/24 which ended in
converting number 24 into port and in SELinux denial.
This behaviour can be prevented by appended patch, which is accepting
only valid values according to manual pages. This is done in function
hpdelim, which is used only for parsing above mentioned ListenAddress
and PermitOpen (same syntax according to man pages).
[1] https://bugzilla.redhat.com/show_bug.cgi?id=1130733
--
You are receiving this mail because:
You are watching the assignee of the bug.
2014 Oct 30
2
[Bug 2304] New: forwarding syntax changed -L a/b/c/d format removed - but not documented
...at mindrot.org
Reporter: alan at roojs.com
This commit
https://github.com/openssh/openssh-portable/commit/7acefbbcbeab725420ea07397ae35992f505f702
Removed the feature that you could use the format -L a/b/c etc.. (this
is used by http://sourceforge.net/projects/pacmanager/)
basically hpdelim split on '/' - but parse_fwd_field uses that to
indicate something else.
As far as I could see the commit and "Potentially-incompatible changes"
in the release log did not mention the change.
was it an intended change? (I've no idea why PAC decided to use that
syntax...)
--...
2008 Aug 27
18
[Bug 1513] New: CIDR address/masklen matching support for permitopen=
https://bugzilla.mindrot.org/show_bug.cgi?id=1513
Summary: CIDR address/masklen matching support for permitopen=
Product: Portable OpenSSH
Version: 5.1p1
Platform: All
OS/Version: All
Status: NEW
Severity: enhancement
Priority: P2
Component: sshd
AssignedTo: unassigned-bugs at mindrot.org
2012 May 03
5
[PATCH/RFC 0/6] New mux client request to list open tcp forwardings.
These patches implement a new mux client request to list the currently opened
TCP forwardings. It also removes some todos regarding keeping the list
of forwardings in the options up-to-date.
Bert Wesarg (6):
attach the forwarding type to struct Forward
merge local and remote forward lists
generate unique ids for forwardings to be used for identification
remove closed forwardings from
2010 Jan 14
1
ssh(1) multiplexing rewrite
...e == CHAN_EXTENDED_WRITE;
if (type == SSH2_MSG_CHANNEL_SUCCESS) {
debug2("%s request accepted on channel %d",
@@ -830,6 +827,7 @@ process_cmdline(void)
while (isspace(*++s))
;
+ /* XXX update list of forwards in options */
if (delete) {
cancel_port = 0;
cancel_host = hpdelim(&s); /* may be NULL */
@@ -927,7 +925,7 @@ process_escapes(Channel *c, Buffer *bin,
escape_char);
buffer_append(berr, string, strlen(string));
- if (c && c->ctl_fd != -1) {
+ if (c && c->ctl_chan != -1) {
chan_read_failed(c);
chan_write_fa...