[PHP-CVS] cvs: php4 /ext/standard dns.c

2003-02-19 Thread Jani Taskinen
sniper Thu Feb 20 00:34:58 2003 EDT Modified files: /php4/ext/standard dns.c Log: - Fixed bug #22299 (gethostbyname() crash with non-existing domain on MacOSX) Index: php4/ext/standard/dns.c diff -u php4/ext/standard/dns.c:1.54 php4/ext/standard/dns.c:1.55

[PHP-CVS] cvs: php4 /ext/standard dns.c

2002-12-30 Thread Marcus Boerger
helly Mon Dec 30 06:59:22 2002 EDT Modified files: /php4/ext/standard dns.c Log: fix state-machine in cases T_ is not available Index: php4/ext/standard/dns.c diff -u php4/ext/standard/dns.c:1.51 php4/ext/standard/dns.c:1.52 ---

Re: [PHP-CVS] cvs: php4 /ext/standard dns.c

2002-12-13 Thread Sara Golemon
Instead of: #ifdef T_ /* blah blah blah */ #endif Why not just put: #ifndef T_ #define T_ 28 #endif in dns.h? This should let the function continue working even on platforms where T_ isn't defined? WHere do you get those numbers? Are you sure they are correct?

Re: [PHP-CVS] cvs: php4 /ext/standard dns.c

2002-12-12 Thread Derick Rethans
On Thu, 12 Dec 2002, Sara Golemon wrote: Bug #17174 Added IPv6 ( record) support to dns_check_record() also added support to dns_get_record This might break builds on some platforms, as T_ is not always defined. See the comment in bug #19555. Heh..I should read PHP-CVS

Re: [PHP-CVS] cvs: php4 /ext/standard dns.c

2002-12-09 Thread Derick Rethans
On Sun, 8 Dec 2002, Sara Golemon wrote: pollita Sun Dec 8 03:14:43 2002 EDT Modified files: /php4/ext/standarddns.c Log: Bug #17174 Added IPv6 ( record) support to dns_check_record() also added support to dns_get_record This might break

[PHP-CVS] cvs: php4 /ext/standard dns.c

2002-12-08 Thread Sara Golemon
pollita Sun Dec 8 03:14:43 2002 EDT Modified files: /php4/ext/standard dns.c Log: Bug #17174 Added IPv6 ( record) support to dns_check_record() also added support to dns_get_record Index: php4/ext/standard/dns.c diff -u php4/ext/standard/dns.c:1.47

[PHP-CVS] cvs: php4 /ext/standard dns.c

2002-12-08 Thread Moriyoshi Koizumi
moriyoshi Sun Dec 8 04:54:31 2002 EDT Modified files: /php4/ext/standard dns.c Log: Prevented return_value from being freed() twice Index: php4/ext/standard/dns.c diff -u php4/ext/standard/dns.c:1.48 php4/ext/standard/dns.c:1.49 ---

[PHP-CVS] cvs: php4 /ext/standard dns.c

2002-11-22 Thread Sara Golemon
pollita Fri Nov 22 20:09:08 2002 EDT Modified files: /php4/ext/standard dns.c Log: New function dns_get_record(): close resolver socket after use. fix to internal func php_parserr(): correct bug in return state. Index: php4/ext/standard/dns.c diff -u

[PHP-CVS] cvs: php4 /ext/standard dns.c

2002-10-18 Thread Jani Taskinen
sniper Fri Oct 18 18:08:23 2002 EDT Modified files: /php4/ext/standard dns.c Log: ws fixes Index: php4/ext/standard/dns.c diff -u php4/ext/standard/dns.c:1.43 php4/ext/standard/dns.c:1.44 --- php4/ext/standard/dns.c:1.43Thu Sep 5 10:21:55 2002 +++