diff options
author | Damien Miller <djm@mindrot.org> | 2003-11-17 21:20:47 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2003-11-17 21:20:47 +1100 |
commit | 51bf11fcc9be7b101d0aee71da80a739f87e0608 (patch) | |
tree | e0c8ff3fa3799d92e1ceb74783bb673041ef5ad6 /msg.h | |
parent | 91c6aa4468a1a8b8e76fbf1c64719055c6acdffa (diff) |
- djm@cvs.openbsd.org 2003/11/17 09:45:39
[msg.c msg.h sshconnect2.c ssh-keysign.c]
return error on msg send/receive failure (rather than fatal); ok markus@
Diffstat (limited to 'msg.h')
-rw-r--r-- | msg.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: msg.h,v 1.2 2002/12/19 00:07:02 djm Exp $ */ | 1 | /* $OpenBSD: msg.h,v 1.3 2003/11/17 09:45:39 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2002 Markus Friedl. All rights reserved. | 3 | * Copyright (c) 2002 Markus Friedl. All rights reserved. |
4 | * | 4 | * |
@@ -25,7 +25,7 @@ | |||
25 | #ifndef SSH_MSG_H | 25 | #ifndef SSH_MSG_H |
26 | #define SSH_MSG_H | 26 | #define SSH_MSG_H |
27 | 27 | ||
28 | void ssh_msg_send(int, u_char, Buffer *); | 28 | int ssh_msg_send(int, u_char, Buffer *); |
29 | int ssh_msg_recv(int, Buffer *); | 29 | int ssh_msg_recv(int, Buffer *); |
30 | 30 | ||
31 | #endif | 31 | #endif |