summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2012-03-07 14:32:47 +0000
committerAndreas Baumann <abaumann@yahoo.com>2012-03-07 14:32:47 +0000
commit714c5115355e4c8ddb9df917dbcebc443cbc4c0e (patch)
treed06dfe8dc3d8b3d8367dfacc56fd9f861248a29b
parent7069b6ad3cd365f554eec2b1489c76b8dfde739e (diff)
downloadnagios-plugin-curl-714c5115355e4c8ddb9df917dbcebc443cbc4c0e.tar.gz
nagios-plugin-curl-714c5115355e4c8ddb9df917dbcebc443cbc4c0e.tar.bz2
switched to version 0.0.4
removed superfluos inclusion of 'curl/types.h'
-rw-r--r--GNUmakefile2
-rw-r--r--packaging/nagios-plugin-curl.spec6
-rw-r--r--src/check_curl.c1
-rw-r--r--src/check_curl.ggo2
4 files changed, 7 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 5b82796..17d8dc5 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -3,6 +3,6 @@ TOPDIR = .
SUBDIRS = src
PACKAGE_NAME=nagios-plugin-curl
-PACKAGE_VERSION=0.0.3
+PACKAGE_VERSION=0.0.4
-include $(TOPDIR)/makefiles/top.mk
diff --git a/packaging/nagios-plugin-curl.spec b/packaging/nagios-plugin-curl.spec
index 3eefed0..105c8bf 100644
--- a/packaging/nagios-plugin-curl.spec
+++ b/packaging/nagios-plugin-curl.spec
@@ -1,6 +1,6 @@
Summary: curl-based web monitoring plugin for Nagios
Name: nagios-plugin-curl
-Version: 0.0.3
+Version: 0.0.4
Release: 0.1
License: GPL
Group: Applications/System
@@ -45,6 +45,10 @@ rm -rf $RPM_BUILD_ROOT
/%{_libdir}/nagios/plugins/check_curl
%changelog
+* Wed Mar 07 2012 Andreas Baumann <abaumann@yahoo.com> 0.0.4-0.1
+- added handling of cookies (for instance for JSESSIONID)
+- added POST parameters
+
* Mon Sep 28 2009 Andreas Baumann <abaumann@yahoo.com> 0.0.3-0.1
- added client certificate and self-signed SSL chain handling
diff --git a/src/check_curl.c b/src/check_curl.c
index bd7f95f..7222b01 100644
--- a/src/check_curl.c
+++ b/src/check_curl.c
@@ -21,7 +21,6 @@
#include <string.h> /* for strstr */
#include <curl/curl.h>
-#include <curl/types.h>
#include <curl/easy.h>
#include "cmdline.h"
diff --git a/src/check_curl.ggo b/src/check_curl.ggo
index 8465564..7d387d4 100644
--- a/src/check_curl.ggo
+++ b/src/check_curl.ggo
@@ -15,7 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
package "check_url"
-version "0.0.3"
+version "0.0.4"
purpose
"Nagios plugin using libcurl and libpcre for http checks
Copyright (c)2008 Andreas Baumann <abaumann at yahoo to com>"