-rw-r--r-- | include/opkele/discovery.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/opkele/discovery.h b/include/opkele/discovery.h index 677d7bb..4471597 100644 --- a/include/opkele/discovery.h +++ b/include/opkele/discovery.h @@ -1,18 +1,17 @@ #ifndef __OPKELE_DISCOVERY_H #define __OPKELE_DISCOVERY_H #include <string> #include <opkele/types.h> -#include <opkele/basic_rp.h> namespace opkele { using std::string; namespace xrd { struct priority_compare { inline bool operator()(long a,long b) const { return (a<0) ? false : (b<0) ? true : (a<b); } }; @@ -83,24 +82,28 @@ namespace opkele { } }; } typedef util::output_iterator_proxy<openid_endpoint_t> endpoint_discovery_iterator; string idiscover( endpoint_discovery_iterator oi, const string& identity); + void yadiscover( + endpoint_discovery_iterator oi, + const string& yurl, + const char **types, bool redirs=false); struct idiscovery_t { bool xri_identity; string normalized_id; string canonicalized_id; xrd::XRD_t xrd; idiscovery_t() { } void clear() { normalized_id.clear(); canonicalized_id.clear(); xrd.clear(); |