Displaying 2 results from an estimated 2 matches for "host_address".
2010 Dec 22
3
[Bug 1847] New: SFTP doen't work well with IPV6 address
...ould
not be resolved. By reading sftp.c, I noticed that this happened in
line 2207.
2207 if ((cp = colon(host)) != NULL) {
2208 *cp++ = '\0';
2209 file1 = cp;
2210 }
The function colon(?) is used to analyze if user's input command is
like ?sftp host_address:/directory?. If it is, colon(?) modifies the
value of ?host? from ?host_address:/directory? to ?host_address?, and
returns value ?/directory? to string ?cp?.
In current case, I think colon(...) incorrectly cuts a valid IPV6
address.
Would you please verify this bug and do a fix? Thanks.
--
C...
2007 Feb 05
1
tunneling support for PF_UNIX sockets
...ble to the user only (by
locating it to 700 directory).
Questions:
3. Is there a way to achieve same goals with current ssh version?
4. Is there a reason not to do this?
5. Is there a already available naming convention to support different
address families?
Quick_n_dirty way would be prefixing host_address with some predefined
"illegal" character (e.g. '#'), to signal the AF_UNIX address. But I see
that general, expandable naming convention would give more. One could
e.g. define an address space of "AF_EXEC", which would execute program
on remote host every time new tunnel...