summaryrefslogtreecommitdiff
path: root/src/lib/internet.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-04-29 21:59:33 +0100
committerCarl Hetherington <cth@carlh.net>2019-04-29 21:59:33 +0100
commit6a92ad180163bf84aeedc5f955edc13557e6848c (patch)
tree7bbb45618676660707d121dc87087830d043e36f /src/lib/internet.h
parent851f17048f25a010818db5569e7cd52755dd0604 (diff)
Ignore the (unrouteable) FTP passive-mode IP address given byv2.13.157
the Dolby certificate server (#1541).
Diffstat (limited to 'src/lib/internet.h')
-rw-r--r--src/lib/internet.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/internet.h b/src/lib/internet.h
index 101eaeae9..125533b5d 100644
--- a/src/lib/internet.h
+++ b/src/lib/internet.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2014-2019 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
@@ -24,6 +24,6 @@
class ScopedTemporary;
-boost::optional<std::string> get_from_url (std::string url, bool pasv, ScopedTemporary& temp);
-boost::optional<std::string> get_from_url (std::string url, bool pasv, boost::function<void (boost::filesystem::path)> load);
-boost::optional<std::string> get_from_zip_url (std::string url, std::string file, bool pasv, boost::function<void (boost::filesystem::path)> load);
+boost::optional<std::string> get_from_url (std::string url, bool pasv, bool skip_pasv_ip, ScopedTemporary& temp);
+boost::optional<std::string> get_from_url (std::string url, bool pasv, bool skip_pasv_ip, boost::function<void (boost::filesystem::path)> load);
+boost::optional<std::string> get_from_zip_url (std::string url, std::string file, bool pasv, bool skip_pasv_ip, boost::function<void (boost::filesystem::path)> load);