summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd_wire.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-03-16 15:55:50 +0100
committerChristian Grothoff <christian@grothoff.org>2020-03-16 15:55:50 +0100
commit84ccc79881674cdd25d4c0fa24b7c75214865093 (patch)
treef225c88a02c330614f01febd73d8155f3b140725 /src/exchange/taler-exchange-httpd_wire.h
parent69dd5657fc47d881315b6d515941d66e03c9a8bf (diff)
downloadexchange-84ccc79881674cdd25d4c0fa24b7c75214865093.tar.gz
exchange-84ccc79881674cdd25d4c0fa24b7c75214865093.tar.bz2
exchange-84ccc79881674cdd25d4c0fa24b7c75214865093.zip
integrate validation with wire, where it belongs
Diffstat (limited to 'src/exchange/taler-exchange-httpd_wire.h')
-rw-r--r--src/exchange/taler-exchange-httpd_wire.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/exchange/taler-exchange-httpd_wire.h b/src/exchange/taler-exchange-httpd_wire.h
index b51bfd781..09e6dd53c 100644
--- a/src/exchange/taler-exchange-httpd_wire.h
+++ b/src/exchange/taler-exchange-httpd_wire.h
@@ -1,6 +1,6 @@
/*
This file is part of TALER
- Copyright (C) 2014, 2015, 2016 Taler Systems SA
+ Copyright (C) 2014--2020 Taler Systems SA
TALER is free software; you can redistribute it and/or modify it under the
terms of the GNU Affero General Public License as published by the Free Software
@@ -29,11 +29,19 @@
/**
* Initialize wire subsystem.
*
+ * @param cfg configuration to use
* @return #GNUNET_OK on success, #GNUNET_SYSERR if we found no valid
* wire methods
*/
int
-TEH_WIRE_init (void);
+TEH_WIRE_init (const struct GNUNET_CONFIGURATION_Handle *cfg);
+
+
+/**
+ * Clean up wire subsystem.
+ */
+void
+TEH_WIRE_done (void);
/**