The unified diff between revisions [92f17752..] and [13704fef..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'include/parsing.h'

#
#
# patch "include/parsing.h"
#  from [f75201b87b93e3c759253685c584e989ce529711]
#    to [6e44cb37e371bc52fb831a5cbc9ec6ba8a1889e1]
#
============================================================
--- include/parsing.h	f75201b87b93e3c759253685c584e989ce529711
+++ include/parsing.h	6e44cb37e371bc52fb831a5cbc9ec6ba8a1889e1
@@ -1,6 +1,6 @@
 /*************************************************
 * Parser Functions Header File                   *
-* (C) 1999-2006 The Botan Project                *
+* (C) 1999-2007 Jack Lloyd                       *
 *************************************************/

 #ifndef BOTAN_PARSER_H__
@@ -15,18 +15,25 @@ namespace Botan {
 /*************************************************
 * String Parsing Functions                       *
 *************************************************/
-std::vector<std::string> parse_algorithm_name(const std::string&);
-std::vector<std::string> split_on(const std::string&, char);
-std::vector<u32bit> parse_asn1_oid(const std::string&);
-bool x500_name_cmp(const std::string&, const std::string&);
-u32bit parse_expr(const std::string&);
+BOTAN_DLL std::vector<std::string> parse_algorithm_name(const std::string&);
+BOTAN_DLL std::vector<std::string> split_on(const std::string&, char);
+BOTAN_DLL std::vector<u32bit> parse_asn1_oid(const std::string&);
+BOTAN_DLL bool x500_name_cmp(const std::string&, const std::string&);

 /*************************************************
 * String/Integer Conversions                     *
 *************************************************/
-std::string to_string(u64bit, u32bit = 0);
-u32bit to_u32bit(const std::string&);
+BOTAN_DLL std::string to_string(u64bit, u32bit = 0);
+BOTAN_DLL u32bit to_u32bit(const std::string&);

+BOTAN_DLL u32bit timespec_to_u32bit(const std::string& timespec);
+
+/*************************************************
+* String/Network Address Conversions             *
+*************************************************/
+BOTAN_DLL u32bit string_to_ipv4(const std::string&);
+BOTAN_DLL std::string ipv4_to_string(u32bit);
+
 }

 #endif