summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Improved Polish translation.Joshua Slive2000-12-191-41/+40
| | | | | | | Submitted by: Bartlomiej Grzybicki <bartgee@mail.morliny.pl> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87429 13f79535-47bb-0310-9956-ffa450edef68
* ap_start_shutdown is not used by anybody outside of the MPMs, so we don'tRyan Bloom2000-12-197-22/+6
| | | | | | | | need to put it in the ap_mpm.h header file. This also makes all of the instances of ap_start_shutdown static. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87428 13f79535-47bb-0310-9956-ffa450edef68
* Find the RM program during configuration.Ryan Bloom2000-12-191-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87427 13f79535-47bb-0310-9956-ffa450edef68
* Remove a warning on some platforms.Ryan Bloom2000-12-191-0/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87426 13f79535-47bb-0310-9956-ffa450edef68
* Correct a mistake in the delete-exports targetRyan Bloom2000-12-191-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87425 13f79535-47bb-0310-9956-ffa450edef68
* Force all Apache functions to be linked into the executable, whether theyRyan Bloom2000-12-1925-66/+99
| | | | | | | | | | | are used or not. This uses the same mechanism that is used for APR and APR-util. This may not be the correct solution, but it works, and that is what I really care about. This also renames CHARSET_EBCDIC to AP_CHARSET_EBCDIC. This is for namespace correctness, but it also makes the exports script a bit easier. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87424 13f79535-47bb-0310-9956-ffa450edef68
* Rework the RFC1413 handling to make it thread-safe, use a timeoutJeff Trawick2000-12-192-70/+98
| | | | | | | on the query, and remove IPv4 dependencies. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87423 13f79535-47bb-0310-9956-ffa450edef68
* Get all of the auth modules to the point that they will install andRyan Bloom2000-12-195-57/+63
| | | | | | | | | be loadable into the server. Our new build/install mechanism expects that all modules will have a common name format. The auth modules didn't use that format, so we didn't install them properly. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87422 13f79535-47bb-0310-9956-ffa450edef68
* Add icons and cgi-bin ... needs shebang rewrite for printenv andWilliam A. Rowe Jr2000-12-191-2/+9
| | | | | | | lib/exp/h copied to the right places. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87421 13f79535-47bb-0310-9956-ffa450edef68
* Quote the destination paths in the event that INSTDIR contains spaces.William A. Rowe Jr2000-12-191-47/+46
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87418 13f79535-47bb-0310-9956-ffa450edef68
* "Mommy! Mommy! I keep spinning in circles." "Shut up, or I'll nail yourGreg Stein2000-12-191-1/+6
| | | | | | | other foot to the floor." git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87417 13f79535-47bb-0310-9956-ffa450edef68
* Get the perchild MPM working better again. I have been able to passRyan Bloom2000-12-193-17/+19
| | | | | | | | some file descriptors back and forth and serve requests, but this code is still very experimental. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87415 13f79535-47bb-0310-9956-ffa450edef68
* The awk update for Win32 build/install. If awk is not installed, onlyWilliam A. Rowe Jr2000-12-191-32/+27
| | | | | | | dbmmmanage.pl, httpd.default.conf and httpd.conf are left uncreated. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87407 13f79535-47bb-0310-9956-ffa450edef68
* Remove an IPv4 dependency in do_double_reverse() by callingJeff Trawick2000-12-181-15/+13
| | | | | | | apr_getaddrinfo() instead of gethostbyname(). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87402 13f79535-47bb-0310-9956-ffa450edef68
* API routines ap_pgethostbyname() and ap_pduphostent() are no longerJeff Trawick2000-12-187-91/+61
| | | | | | | | | | | available. Use apr_getaddrinfo() instead. The ap_pduphostent() code was moved to modules/proxy/proxy_util.c for now since that is the only caller. When the proxy's use of the resolver is APR-ized this won't be needed anymore. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87399 13f79535-47bb-0310-9956-ffa450edef68
* typosEric Cholet2000-12-182-4/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87398 13f79535-47bb-0310-9956-ffa450edef68
* apr_get_hostname() is gone.Jeff Trawick2000-12-181-1/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87397 13f79535-47bb-0310-9956-ffa450edef68
* Stop using apr_get_hostname(). It doesn't support IPv6 and itJeff Trawick2000-12-181-5/+11
| | | | | | | is redundant. apr_getnameinfo() provides the same function. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87396 13f79535-47bb-0310-9956-ffa450edef68
* update French pageEric Cholet2000-12-181-40/+33
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87395 13f79535-47bb-0310-9956-ffa450edef68
* Get "NameVirtualHost *" option working in Apache 2.0Ryan Bloom2000-12-182-1/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87393 13f79535-47bb-0310-9956-ffa450edef68
* Clean up some formatting. Using a tab of 22 characters makes the outputRyan Bloom2000-12-181-3/+3
| | | | | | | | | | | very annoying to read. 8 looks much more reasonable to me. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87392 13f79535-47bb-0310-9956-ffa450edef68
* Get -t -D DUMP_VHOSTS working and properly documented. This removes theRyan Bloom2000-12-172-24/+23
| | | | | | | -S option from the docs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87391 13f79535-47bb-0310-9956-ffa450edef68
* Make the server return HTTP_RANGE_NOT_SATISFIABLE if the all of theRyan Bloom2000-12-172-6/+34
| | | | | | | requested ranges begin after the end of the response. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87390 13f79535-47bb-0310-9956-ffa450edef68
* Get byterange requests working with data that is generated by a handlerRyan Bloom2000-12-172-4/+24
| | | | | | | | | that does not add a content-length. For example, mod_autoindex doesn't set a content-length, but the byterange filter requires one. We fix this by computing the content-length in the byterange filter. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87389 13f79535-47bb-0310-9956-ffa450edef68
* When the platform supports IPv6 (according to APR) andJeff Trawick2000-12-171-45/+52
| | | | | | | | | | the system is configured to support IPv6, Apache gets IPv6 listening sockets unless the Listen statement says otherwise (i.e., Listen specifies an IPv4 numeric address string or a hostname which resolves to an IPv4 address). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87388 13f79535-47bb-0310-9956-ffa450edef68
* Call ap_log_error() instead of ap_log_rerror() from alloc_listener().Jeff Trawick2000-12-171-2/+2
| | | | | | | | This bug, introduced in a recent commit, caused a segfault when the hostname couldn't be resolved. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87386 13f79535-47bb-0310-9956-ffa450edef68
* Rename the apr_opendir symbol to apr_dir_open. This makes more sense,Ryan Bloom2000-12-176-6/+6
| | | | | | | and the rename was proposed a while ago inside of APR. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87385 13f79535-47bb-0310-9956-ffa450edef68
* Update some STATUS files.Ryan Bloom2000-12-171-2/+19
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87384 13f79535-47bb-0310-9956-ffa450edef68
* Major rewrite of mod_access docs.Joshua Slive2000-12-161-177/+182
| | | | | | | Submitted by: Joshua Slive, Cliff Woolley git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87378 13f79535-47bb-0310-9956-ffa450edef68
* get_addresses()Jeff Trawick2000-12-161-28/+42
| | | | | | | | | | | | | | | | | | . use apr_parse_addr_port() so we handle IPv6 addresses on NameVirtualHost and <VirtualHost > directives . don't hardcode AF_INET when a hostname or IP address was coded dump_a_vhost() . check the address family before looking for certain IPv4 addresses ap_fini_vhost_config() . pass apr_status_t to ap_log_error() after apr_getnameinfo() fails git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87377 13f79535-47bb-0310-9956-ffa450edef68
* tweak the responsibilities of make_sock() and alloc_listener()Jeff Trawick2000-12-162-34/+57
| | | | | | | | | | | because we need to resolve the hostname (i.e., call apr_getaddrinfo()) before creating the socket so that we get a socket of the appropriate family also, simplify some of the address displays in some error logs git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87371 13f79535-47bb-0310-9956-ffa450edef68
* Use apr_parse_addr_port() in fix_hostname(). This simplifies theJeff Trawick2000-12-161-35/+31
| | | | | | | | | code by a small (okay, tiny) amount and lets IPv6 numeric address strings be passed through. Obtained from: the idea is from the KAME IPv6 patch for Apache 1.3 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87370 13f79535-47bb-0310-9956-ffa450edef68
* use apr_parse_addr_port() in ap_set_listener(); this allows IPv6Jeff Trawick2000-12-161-26/+23
| | | | | | | | | | | numeric address strings to be specified (though we wouldn't get an IPv6 socket for it at the moment) consolidate the use of APR_ANYADDR and make a note about its protocol dependence git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87369 13f79535-47bb-0310-9956-ffa450edef68
* Display whether or not APR (and thus Apache) supports IPv6 in theJeff Trawick2000-12-161-0/+3
| | | | | | | httpd -V output. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87368 13f79535-47bb-0310-9956-ffa450edef68
* Fix a problem with the last commit... I missed one of the hashing changesJeff Trawick2000-12-161-1/+1
| | | | | | | so some of the code had an unnecessary IPv4 assumption. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87367 13f79535-47bb-0310-9956-ffa450edef68
* Get rid of some IPv4 dependencies by passing the hash function theJeff Trawick2000-12-161-16/+28
| | | | | | | apr_sockaddr_t * instead of the IPv4 address. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87366 13f79535-47bb-0310-9956-ffa450edef68
* Fix the call to apr_snprintf() for formatting the sockaddr inJeff Trawick2000-12-161-2/+1
| | | | | | | a vhost entry when dumping the vhost config. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87365 13f79535-47bb-0310-9956-ffa450edef68
* apr_get_inaddr() is goneJeff Trawick2000-12-151-1/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87364 13f79535-47bb-0310-9956-ffa450edef68
* move closer to IPv6 support by changing the server_addr_recJeff Trawick2000-12-153-23/+34
| | | | | | | | | | | | | | | | | representation of the bound address to something which handles IPv6; this also allows us to switch to APR resolver routines in places instead of calling gethostbyname() and gethostbyaddr() directly Issues remaining with this set of changes: 1) apr_snprintf()'s %pA formatting needs to change to take apr_sockaddr_t * instead of sockaddr_in * -OR- just get rid of that type of formatting 2) apr_get_inaddr() is no longer used and should be removed git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87363 13f79535-47bb-0310-9956-ffa450edef68
* Get exe CGI's working again on WindowsAllan K. Edwards2000-12-152-2/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87359 13f79535-47bb-0310-9956-ffa450edef68
* Axe ap_get_virthost_addr(). This <address>[:port] parse routineJeff Trawick2000-12-152-63/+0
| | | | | | | | | is not used anymore and it doesn't handle IPv6, so it is best to drop it. If/when mod_tls (Netware) is ported to 2.0 it can use apr_parse_addr_port(). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87354 13f79535-47bb-0310-9956-ffa450edef68
* Greek translation of welcome page.Joshua Slive2000-12-151-0/+37
| | | | | | | Submitted by: simos@pc96.ma.rhbnc.ac.uk git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87352 13f79535-47bb-0310-9956-ffa450edef68
* Overly protective with a code block, let that return run free again...William A. Rowe Jr2000-12-151-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87350 13f79535-47bb-0310-9956-ffa450edef68
* Thanks again, Andrew Braund... a little testing and sleuthing revealedWilliam A. Rowe Jr2000-12-141-20/+27
| | | | | | | | | | | | we were trying to load kernel32.dll as we unloaded, which is badness. Right there, in my face, was the 'won't stay alive on logout' bug. Squashed. So Win95/98 are working as they were in 1.3.14, only better! Happy day, time to roll once the remaining showstopper is cleaned up. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87348 13f79535-47bb-0310-9956-ffa450edef68
* The local_addr and remote_addr fields in the conn_rec are nowJeff Trawick2000-12-146-20/+15
| | | | | | | | apr_sockaddr_t * instead of sockaddr_in. This is a small step towards IPv6 support. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87342 13f79535-47bb-0310-9956-ffa450edef68
* Suppress xcopy prompt during installationAllan K. Edwards2000-12-141-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87341 13f79535-47bb-0310-9956-ffa450edef68
* add apr_getnameinfoJeff Trawick2000-12-141-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87340 13f79535-47bb-0310-9956-ffa450edef68
* "Anybody calls me Francis, I'll kill him."Greg Stein2000-12-141-2/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87338 13f79535-47bb-0310-9956-ffa450edef68
* Straighten up the first-time-through check in mod_cgid and add a CHANGESJeff Trawick2000-12-132-6/+16
| | | | | | | entry for the bug fixes to mod_rewrite and mod_cgid. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87330 13f79535-47bb-0310-9956-ffa450edef68
* Get rid of the once_through flag. It is never used and doesn't workJeff Trawick2000-12-131-3/+0
| | | | | | | in DSO mode anyway. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87329 13f79535-47bb-0310-9956-ffa450edef68