how to run gdb in openssl - Openssl
This is a discussion on how to run gdb in openssl - Openssl ; Hi all,
could anyone please tell me how to run the gdb in openssl?
Regards,
Prashanth...
-
how to run gdb in openssl
Hi all,
could anyone please tell me how to run the gdb in openssl?
Regards,
Prashanth
-
Fwd: how to run gdb in openssl
Hi all,
Could anyone please tell me how to run the gdb in openssl?
In gdb I am running the command as path_of_bin/bin/openssl s_client -connect
ipaddress:4433.
But i get the error as: Undefined command: "". Try "help".
why is it so?
How do i ensure that the gdb runs correclty?
Regards,
Prashanth
---------- Forwarded message ----------
From: prashanth s joshi
Date: Tue, Oct 7, 2008 at 6:52 PM
Subject: how to run gdb in openssl
To: openssl-users@openssl.org
Hi all,
could anyone please tell me how to run the gdb in openssl?
Regards,
Prashanth
-
Fwd: how to run gdb in openssl
Hi all,
Could anyone please tell me how to run the gdb in openssl?
In gdb I am running the command as path_of_bin/bin/openssl s_client -connect
ipaddress:4433.
But i get the error as: Undefined command: "". Try "help".
why is it so?
How do i ensure that the gdb runs correclty?
Regards,
Prashanth
---------- Forwarded message ----------
From: prashanth s joshi
Date: Tue, Oct 7, 2008 at 6:52 PM
Subject: how to run gdb in openssl
To: openssl-users@openssl.org
Hi all,
could anyone please tell me how to run the gdb in openssl?
Regards,
Prashanth
-
Re: Fwd: how to run gdb in openssl
Hi,
> In gdb I am running the command as path_of_bin/bin/openssl s_client
> -connect ipaddress:4433.
> But i get the error as: Undefined command: "". Try "help".
> why is it so?
For gdb, loading an executable and running it, are two separate steps.
So starting "gdb path_of_bin/bin/openssl" will start gdb and load the
executable. Now, when you get to the gdb prompt, you can run the
executable by "run ", e.g. "run -connect
ipaddress:4433".
Normally, gdb documentation is not that bad, it should be described
there as well ...
HTH,
Stefan
P.S.: No, I don't believe this is the appropriate list for general
"how do I use gdb" questions ...
__________________________________________________ ____________________
OpenSSL Project http://www.openssl.org
Development Mailing List openssl-dev@openssl.org
Automated List Manager majordomo@openssl.org
-
RE: how to run gdb in openssl
gdb is a debugger. it is not clear from reading your note why you are
trying to debug the openssl command line module. if what you are trying to
do is understand why the client is unable to make the connection to
ipaddress:4433; try using the -debug option.
ex:
openssl s_client -connect ipaddress:4433 -debug
HTH
-----Original Message-----
From: owner-openssl-users@openssl.org
[mailto
wner-openssl-users@openssl.org]On Behalf Of prashanth s joshi
Sent: Tuesday, October 07, 2008 11:43 AM
To: openssl-users@openssl.org
Subject: Fwd: how to run gdb in openssl
Hi all,
Could anyone please tell me how to run the gdb in openssl?
In gdb I am running the command as path_of_bin/bin/openssl
s_client -connect ipaddress:4433.
But i get the error as: Undefined command: "". Try "help".
why is it so?
How do i ensure that the gdb runs correclty?
Regards,
Prashanth
---------- Forwarded message ----------
From: prashanth s joshi
Date: Tue, Oct 7, 2008 at 6:52 PM
Subject: how to run gdb in openssl
To: openssl-users@openssl.org
Hi all,
could anyone please tell me how to run the gdb in openssl?
Regards,
Prashanth
-
Re: how to run gdb in openssl
* prashanth s joshi wrote on Tue, Oct 07, 2008 at 21:13 +0530:
> Could anyone please tell me how to run the gdb in openssl?
> In gdb I am running the command as path_of_bin/bin/openssl s_client -connect
> ipaddress:4433.
> But i get the error as: Undefined command: "". Try "help".
> why is it so?
Because "path_of_bin/bin/openssl s_client -connect ipaddress:4433" is not
a gdb command?
steffen@trinida:~ # gdb /usr/bin/openssl
[...]
(gdb) set args s_client -connect ipaddress:4433
(gdb) r
Starting program: /usr/bin/openssl s_client -connect
ipaddress:4433
gethostbyname failure
connect:errno=2
Program exited with code 01.
(gdb)
Try `man gdb' for details :-)
oki,
Steffen
About Ingenico Throughout the world businesses rely on Ingenico for secure and expedient electronic transaction acceptance. Ingenico products leverage proven technology, established standards and unparalleled ergonomics to provide optimal reliability, versatility and usability. This comprehensive range of products is complemented by a global array of services and partnerships, enabling businesses in a number of vertical sectors to accept transactions anywhere their business takes them.
www.ingenico.com This message may contain confidential and/or privileged information. If you are not the addressee or authorized to receive this for the addressee, you must not use, copy, disclose or take any action based on this message or any information herein. If you have received this message in error, please advise the sender immediately by reply e-mail and delete this message. Thank you for your cooperation.
__________________________________________________ ____________________
OpenSSL Project http://www.openssl.org
User Support Mailing List openssl-users@openssl.org
Automated List Manager majordomo@openssl.org