Mercurial > dropbear
comparison session.h @ 1071:696205e3dc99 pam
Remove ATTRIB_NORETURN from session_loop() since it returns.
The stack breaks pretty badly.
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 17 Mar 2015 21:58:32 +0800 |
parents | 16379795f80b |
children |
comparison
equal
deleted
inserted
replaced
1070:16379795f80b | 1071:696205e3dc99 |
---|---|
42 | 42 |
43 extern int sessinitdone; /* Is set to 0 somewhere */ | 43 extern int sessinitdone; /* Is set to 0 somewhere */ |
44 extern int exitflag; | 44 extern int exitflag; |
45 | 45 |
46 void common_session_init(int sock_in, int sock_out); | 46 void common_session_init(int sock_in, int sock_out); |
47 void session_loop() ATTRIB_NORETURN; | 47 void session_loop(); |
48 void session_cleanup(); | 48 void session_cleanup(); |
49 void send_session_identification(); | 49 void send_session_identification(); |
50 void send_msg_ignore(); | 50 void send_msg_ignore(); |
51 void ignore_recv_response(); | 51 void ignore_recv_response(); |
52 | 52 |