gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libmicrohttpd] 04/06: MHD_get_version_bin(): added new function


From: gnunet
Subject: [libmicrohttpd] 04/06: MHD_get_version_bin(): added new function
Date: Mon, 19 Dec 2022 16:18:01 +0100

This is an automated email from the git hooks/post-receive script.

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

commit 2a71dbd38f47cb067e61b681d7ac5dd39d26b754
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Thu Nov 24 09:30:35 2022 +0300

    MHD_get_version_bin(): added new function
---
 src/include/microhttpd.h | 14 +++++++++++++-
 src/microhttpd/daemon.c  | 15 +++++++++++++++
 2 files changed, 28 insertions(+), 1 deletion(-)

diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 0eae3f9f..b66f4b3d 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -96,7 +96,7 @@ extern "C"
  * they are parsed as decimal numbers.
  * Example: 0x01093001 = 1.9.30-1.
  */
-#define MHD_VERSION 0x00097543
+#define MHD_VERSION 0x00097544
 
 /* If generic headers don't work on your platform, include headers
    which define 'va_list', 'size_t', 'ssize_t', 'intptr_t', 'off_t',
@@ -5935,6 +5935,18 @@ _MHD_EXTERN const char *
 MHD_get_version (void);
 
 
+/**
+ * Obtain the version of this library as a binary value.
+ *
+ * @return version binary value, e.g. "0x00090900" (#MHD_VERSION of
+ *         compiled MHD binary)
+ * @note Available since #MHD_VERSION 0x00097544
+ * @ingroup specialized
+ */
+_MHD_EXTERN uint32_t
+MHD_get_version_bin (void);
+
+
 /**
  * Types of information about MHD features,
  * used by #MHD_is_feature_supported().
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 53ab147f..d854de31 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -8576,6 +8576,21 @@ MHD_get_version (void)
 }
 
 
+/**
+ * Obtain the version of this library as a binary value.
+ *
+ * @return version binary value, e.g. "0x00090900" (#MHD_VERSION of
+ *         compiled MHD binary)
+ * @note Available since #MHD_VERSION 0x00097544
+ * @ingroup specialized
+ */
+_MHD_EXTERN uint32_t
+MHD_get_version_bin (void)
+{
+  return (uint32_t) MHD_VERSION;
+}
+
+
 /**
  * Get information about supported MHD features.
  * Indicate that MHD was compiled with or without support for

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]