Changes with Apache 2.0b1
+ *) Get "NameVirtualHost *" working in 2.0. [Ryan Bloom]
+
*) Return HTTP_RANGE_NOT_SATISFIABLE if the every range requested starts
after the end of the response. [Ryan Bloom]
port = default_port;
}
- if (strcasecmp(host, "_default_") == 0
+ if (strcmp(host, "*") == 0) {
+ rv = apr_getaddrinfo(&my_addr, NULL, APR_INET, port, 0, p);
+ my_addr->sa.sin.sin_addr.s_addr = htonl(INADDR_ANY);
+ } else if (strcasecmp(host, "_default_") == 0
|| strcmp(host, "255.255.255.255") == 0) {
rv = apr_getaddrinfo(&my_addr, NULL, APR_INET, port, 0, p);
ap_assert(rv == APR_SUCCESS); /* must be bug or out of storage */