summaryrefslogtreecommitdiff
path: root/ext/standard/dns.c
Commit message (Collapse)AuthorAgeFilesLines
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* Making PHP compile again on MacOSX 10.1Dan Kalowsky2001-12-271-3/+9
| | | | | # 10.1 does not have inet_pton support yet it seems so disabling it.
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* Added IPv6 support to gethostbyaddr()Stig Venaas2001-09-191-0/+17
| | | | | | @- Added IPv6 support to gethostbyaddr() @ (Patch by Matthias Wimmer <matthias@charente.de> and venaas)
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* WhitespaceZeev Suraski2001-08-111-21/+21
|
* Cleanup. Also make gethostnamel() to return FALSE on error and not just ↵foobar2001-08-101-28/+31
| | | | empty array.
* Zend compatibility patchZeev Suraski2001-07-301-8/+0
|
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-2/+11
|
* vim-6 does folding - clean up a bunch of missing folding tags plusRasmus Lerdorf2001-06-051-0/+1
| | | | | some misguided RINIT and RSHUTDOWN calls in a few fringe extensions
* This should fix problems in systems without libbind.foobar2001-03-161-1/+1
|
* HAVE_BINDLIB --> HAVE_LIBBINDfoobar2001-03-111-2/+2
|
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* Added tests for arpa/*.h and resolv.h which don't exist on the BeOS.Stephen van Egmond2001-02-061-0/+6
| | | | | The dns functions on BeOS come from socket.h
* @BeOS patch from svanegmond@bang.dhs.org modified somewhat by RasmusRasmus Lerdorf2001-01-211-1/+7
| | | | | BeOS patch from svanegmond@bang.dhs.org modified somewhat by Rasmus
* The result of conv_z_macros and some manual conversion ofSascha Schumann2000-11-271-18/+14
| | | | | "return_value.*=.*IS_STRING" constructs to RETVAL_STRINGL.
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-5/+5
|
* a second (cleaner?) try on warnings about unsupported functionsHartmut Holzgraefe2000-05-271-11/+2
|
* - I'm not sure if PHP_NOT_IN_THIS_BUILD is the way to handle theseAndi Gutmans2000-05-271-2/+2
| | | | | - functions but in any case I have changed it to PHP_NOT_IN_THIS_BUILD()
* if a module provides a function it should also do so if the functionHartmut Holzgraefe2000-05-261-2/+11
| | | | | | | | is not functional due to configure findings the function should offer a meaningful warning if it is not supported instead of just beeing undefined i had already changed this in 'gd', now this is doing it for 'standard'
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* Fix 64-bit issue in gethostbyaddr().Sascha Schumann2000-05-171-2/+3
|
* - Don't define DEBUG anymore. Everyone should use PHP_DEBUG.Andi Gutmans2000-03-111-4/+4
| | | | | | | | There are 2-3 third-party libs in PHP which use DEBUG and I left them this way (primary example is pcrelib). - Please test things and Andrei, can you check that pcrelib stopped printing the warning messages?
* the pipe is breaking all the timeZeev Suraski2000-02-191-2/+2
|
* Fine tune Andi's patchZeev Suraski2000-02-111-2/+2
|
* - Get rid of some more evil MSVC5's and switch standard/ to use PHP_WIN32Andi Gutmans2000-02-101-2/+2
|
* Happy Y2K patch! Happy new year (or the new millennium, depending on whetherSascha Schumann2000-01-011-1/+1
| | | | | you start counting at 0 or 1).
* getParameters -> zend_get_parametersAndrei Zmievski1999-12-201-2/+2
|
* - The tree compiles againZeev Suraski1999-12-181-5/+5
|
* More php3_ annihilationZeev Suraski1999-12-181-6/+6
|
* New Zend APISascha Schumann1999-09-251-29/+29
|
* Removed '3' from key functions in PHP (maintained compatibility throughZeev Suraski1999-08-021-7/+7
| | | | | php3_compat.h)
* License updateZeev Suraski1999-07-161-21/+9
|
* Thou shalt use the API, and thou shalt be safeZeev Suraski1999-05-231-8/+2
|
* conv_proto *.[ch]Sascha Schumann1999-05-161-5/+5
|
* A lot of cleanups... Removed old thread-safe code and other redundant code ↵Zeev Suraski1999-04-241-6/+2
| | | | and files
* Remove tls.[ch]Zeev Suraski1999-04-231-3/+0
|
* First commit of re-structuring phase one. We have started using automake inStig Bakken1999-04-171-0/+343
sub-directories and started to move extension code into ext/<name>. For now, I have moved the "standard" extension (which is quite a mix of everything right now) and the GD extension into their own subdirs in ext/. The configure script now also runs configure in the libzend directory automatically and makes sure php4 and libzend use the same config.cache file. To avoid running configure in libzend, use the --no-recursion option. "make" in php4 also builds libzend now. The Apache module doesn't compile right now, but a fix for that is coming up.