aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS9
-rw-r--r--configure.ac2
-rw-r--r--src/wrapacl.c2
3 files changed, 10 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 805b930..88f7c1c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,11 +1,18 @@
-Ping903 -- history of user-visible changes. 2020-03-10
+Ping903 -- history of user-visible changes. 2020-03-11
See the end of file for copying conditions.
Please send Ping903 bug reports to <gray@gnu.org>
+Version 0.7, 2020-03-11
+
+* Fix memory leaks.
+
+* Improve handling of ICMP replies.
+
+
Version 0.6, 2020-03-10
* Reorganize entry points structure.
The "/ip" entry point is gone. The "/hosts" entry point accepts query
arguments: (1) select=LIST, which introduces a list of IP addresses
diff --git a/configure.ac b/configure.ac
index 0f4cb69..59a2421 100644
--- a/configure.ac
+++ b/configure.ac
@@ -12,13 +12,13 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ping903. If not, see <http://www.gnu.org/licenses/>.
AC_PREREQ([2.69])
-AC_INIT([Ping903], [0.6], [gray@gnu.org],
+AC_INIT([Ping903], [0.7], [gray@gnu.org],
[ping903],
[https://puszcza.gnu.org.ua/projects/ping903/])
AC_CONFIG_SRCDIR([src/main.c])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([-Wall -Werror 1.11.5 foreign tar-ustar silent-rules])
diff --git a/src/wrapacl.c b/src/wrapacl.c
index db336e4..27e905c 100644
--- a/src/wrapacl.c
+++ b/src/wrapacl.c
@@ -16,13 +16,13 @@
*/
#include <tcpd.h>
#include <microhttpd.h>
#include "defs.h"
int
-p903_httpd_acl(void *cls, const struct sockaddr *addr, socklen_t addrlen)
+p903_httpd_acl(void *cls, const struct sockaddr *addr, socklen_t addrlen)
{
struct request_info req;
request_init(&req,
RQ_DAEMON, progname,
RQ_CLIENT_SIN, addr,
RQ_SERVER_SIN, cls,

Return to:

Send suggestions and report system problems to the System administrator.