[PATCH] Fix TRACEs of cli_send_netcat_request

2013-11-25 Thread Catalin Patulea
Signed-off-by: Catalin Patulea 
---
 cli-chansession.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/cli-chansession.c b/cli-chansession.c
index ed80453..0ee3e85 100644
--- a/cli-chansession.c
+++ b/cli-chansession.c
@@ -398,6 +398,7 @@ void cli_send_netcat_request() {
const unsigned char* source_host = "127.0.0.1";
const int source_port = 22;
 
+   TRACE(("enter cli_send_netcat_request"))
cli_opts.wantpty = 0;
 
if (send_msg_channel_open_init(STDIN_FILENO, &cli_chan_netcat) 
@@ -414,7 +415,7 @@ void cli_send_netcat_request() {
buf_putint(ses.writepayload, source_port);
 
encrypt_packet();
-   TRACE(("leave cli_send_chansess_request"))
+   TRACE(("leave cli_send_netcat_request"))
 }
 #endif
 
-- 
1.8.4.1



Re: Dropbear test version 2013.61test with ECC

2013-11-25 Thread Matt Johnston
On Thu, Nov 14, 2013 at 05:22:13PM +0100, Daniel Cegiełka wrote:
> Thank you Matt! Thank you Adam! :)
> 
> btw. can we use qhasm version as an option for x86 (curve25519)?

Hi Daniel,

Is x86 performance an issue with the current code? Binary
size might be a reason to use the asm version, though
probably on other CPUs? Generally I'd prefer to keep it
portable and relatively readable.

Cheers,
Matt