Displaying 6 results from an estimated 6 matches for "msg_send".
2002 Oct 02
4
[Bug 406] Build openssh-3.4p1 fails, Mac OS X v1.2
http://bugzilla.mindrot.org/show_bug.cgi?id=406
------- Additional Comments From mouring at eviladmin.org 2002-10-02 13:14 -------
We are in release mode. Please check out a snapshot at:
http://www.openssh.com/portable.html
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
2002 Jul 16
0
[Bug 356] New: 3.4p1 hostbased authentication between Linux and Solaris
...tive,password
debug3: authmethod_lookup hostbased
debug3: remaining preferred: publickey,keyboard-interactive,password
debug3: authmethod_is_enabled hostbased
debug1: next auth method to try is hostbased
debug2: userauth_hostbased: chost enfm-pc8.utcc.utoronto.ca.
debug1: ssh_keysign called
debug3: msg_send: type 2
debug3: msg_recv entering
debug2: we sent a hostbased packet, wait for reply
debug1: Remote: Accepted by .rhosts.
debug1: Remote: Accepted host enfm-pc8.utcc.utoronto.ca ip 128.100.102.101
client_user mikep server_user mikep
debug1: authentications that can continue:
publickey,password,keyb...
2008 Jun 19
5
Portforwarding using the control master.
Hi all,
currently I am considering writing a patch for OpenSSH that will allow
portforwarding using the control_master unix domain socket. The idea is
to introduce an extra SSHMUX command, SSHMUX_COMMAND_SOCKS, which will
then pass control to the normal socks functions used for dynamic
forwarding.
The main reason for me to write this patch are:
- some more control over who gets to connect to
2002 Nov 09
0
[Bug 406] Build openssh-3.4p1 fails, Mac OS X v1.2
...-----------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
------- Additional Comments From dtucker at zip.com.au 2002-11-10 09:49 -------
20021003
[snip]
- (djm) Bug #406: s/msg_send/ssh_msg_send/ for Mac OS X 1.2
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
2002 Aug 26
0
rsync error: mknod, invalid argument
...valid argument
mknod ./{filename} : Invalid argument
wrote 16 bytes read 336751 bytes 131.52 bytes/sec
total size is 33812275937 speedup is 100402.58
rsync error: partial transfer (code 23) at main.c(925)
My /var/log/messages adds the following entry:
{date/time} {comp-name} :sshd[1716]: fatal: msg_send: write
I'm running:Athlon 1800+, 1GB-RAM, FreeBSD 4.6
Perhaps someone can give me some insight? I would be much appreciative.
2010 Jan 14
1
ssh(1) multiplexing rewrite
...;
- "to %s? ", host);
- if (allowed)
- start_close = 1;
- /* FALLTHROUGH */
- case SSHMUX_COMMAND_ALIVE_CHECK:
- /* Reply for SSHMUX_COMMAND_TERMINATE and ALIVE_CHECK */
- buffer_clear(&m);
- buffer_put_int(&m, allowed);
- buffer_put_int(&m, getpid());
- if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
- error("%s: client msg_send failed", __func__);
- close(client_fd);
- buffer_free(&m);
- return start_close;
+ if (state->conn_state != MUX_HELLO_WAIT) {
+ error("%s: MUX_MSG_HELLO received in state MUX_UP", __func__);
+...