Comments for Moy Blog https://moythreads.com/wordpress Abandon All Hope, Ye Who Read This Blog Fri, 14 Aug 2020 20:06:49 +0000 hourly 1 https://wordpress.org/?v=5.1.9 Comment on Sending UDP packets from the command line by csb https://moythreads.com/wordpress/2012/03/15/sending-udp-packets-from-the-command-line/comment-page-1/#comment-113512 Fri, 14 Aug 2020 20:06:49 +0000 http://www.moythreads.com/wordpress/?p=189#comment-113512 And yet bash runs on windows…

]]>
Comment on Sending UDP packets from the command line by honest man https://moythreads.com/wordpress/2012/03/15/sending-udp-packets-from-the-command-line/comment-page-1/#comment-36525 Fri, 28 Dec 2018 09:02:46 +0000 http://www.moythreads.com/wordpress/?p=189#comment-36525 This does not work for windows.

]]>
Comment on Quick tip for debugging deadlocks by Hi-Angel https://moythreads.com/wordpress/2009/09/27/quick-tip-for-debugging-deadlocks/comment-page-1/#comment-34012 Thu, 23 Aug 2018 12:31:49 +0000 http://www.moythreads.com/wordpress/?p=84#comment-34012 Thanks moy and ed.

FTR: to find LWP of threads from within the gdb just look at the output of `info threads`. There’s a “LWP” word should be, and then a number follows.

]]>
Comment on Sending UDP packets from the command line by Need to fake some incoming packets? | solutions not code https://moythreads.com/wordpress/2012/03/15/sending-udp-packets-from-the-command-line/comment-page-1/#comment-24102 Tue, 13 Feb 2018 21:49:21 +0000 http://www.moythreads.com/wordpress/?p=189#comment-24102 […] Yes, I know, there would be as well sendip. But at work I barely could make a Cygwin work. Not to speak about some dynamic “oh, I load more packages on the fly from the internet”-possibility, meh. But for those interested: short tutorial for sendip. […]

]]>
Comment on Sangoma Tapping Solution for Asterisk by aatif https://moythreads.com/wordpress/2009/09/26/sangoma-tapping-solution-for-asterisk/comment-page-1/#comment-20034 Thu, 09 Nov 2017 05:48:35 +0000 http://www.moythreads.com/wordpress/?p=68#comment-20034 Nice guide, Can you please let me know an alternative solution of cards other than sangoma, which are best?

]]>
Comment on IJW (It Just Works) and COM Interop by Joy https://moythreads.com/wordpress/2008/03/26/ijw-it-just-works-and-com-interop/comment-page-1/#comment-19411 Tue, 24 Oct 2017 11:51:57 +0000 http://www.moythreads.com/wordpress/2008/03/26/ijw-it-just-works-and-com-interop/#comment-19411 “dtcom.tlb” should actually be mycomponent.tlb created before by me, right?

]]>
Comment on Sending email with python without an MTA by imdadhussain https://moythreads.com/wordpress/2015/07/09/sending-email-with-python-without-an-mta/comment-page-1/#comment-17785 Sat, 16 Sep 2017 06:49:58 +0000 http://www.moythreads.com/wordpress/?p=280#comment-17785 I have try your just to send mail for notification.
It give me error
SMTPRecipientsRefused: {‘my email id ‘: (550, “Mail rejected by for policy reasons. We generally do not accept email from dynamic IP’s as they are typically used to deliver unauthenticated SMTP e-mail to an Internet mail server. http://www.spamhaus.org maintains lists of dynamic and residential IP addresses. If you are not an email/network admin please contact your E-mail/Internet Service Provider for help. Email/network admins, please contact for email delivery information and support”)}

]]>
Comment on New astunicall release by lasertest https://moythreads.com/wordpress/2008/11/30/new-astunicall-release/comment-page-1/#comment-17494 Sun, 03 Sep 2017 23:06:51 +0000 http://www.moythreads.com/wordpress/2008/11/30/new-astunicall-release/#comment-17494 Amazing! Its in fact awesome piece of writing, I have got much clear idea
regarding from this article.

]]>
Comment on Sending email with python without an MTA by Christian https://moythreads.com/wordpress/2015/07/09/sending-email-with-python-without-an-mta/comment-page-1/#comment-16911 Wed, 16 Aug 2017 16:24:42 +0000 http://www.moythreads.com/wordpress/?p=280#comment-16911 Good idea!
However, i guess this only works when:
a) Your mailserver at ‘dest-server.com’ does not check for a valid certificate for the sending MTA?
b) Your mailserver at ‘dest-server.com’ does not demand TLS encryption?
c) You don’t send your emails to ‘gmail.com’ or ‘yahoo.com’ or any other big MTA, that demands the above mentioned points?

Would be interesting to have an example that can deal with these “advanced” features.

]]>
Comment on GDB strcmp in a core dump by Sandeep https://moythreads.com/wordpress/2015/06/25/gdb-strcmp-in-a-core-dump/comment-page-1/#comment-16110 Wed, 26 Jul 2017 06:33:37 +0000 http://www.moythreads.com/wordpress/?p=286#comment-16110 Thanks!
We need this code after while loop to rule out the comparison failure for strings like “abcd” and “abcdef”

if ($arg0[$_i] != 0x0 || $arg1[$_i] != 0x0)
set $strcmp_res = 0
end

]]>