diff options
author | Xan Lopez <xan@gnome.org> | 2009-12-15 18:56:02 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2009-12-15 18:56:02 +0800 |
commit | 4956cb6e958f0640b2864719f4c87118b563447f (patch) | |
tree | 74048b6706ce8787a3483ce65098f6557ff963e6 /embed/ephy-embed-single.h | |
parent | c7b6cac1e8d49f1b5d3fd3921cc518f8210b77b6 (diff) | |
download | gsoc2013-epiphany-4956cb6e958f0640b2864719f4c87118b563447f.tar.gz gsoc2013-epiphany-4956cb6e958f0640b2864719f4c87118b563447f.tar.zst gsoc2013-epiphany-4956cb6e958f0640b2864719f4c87118b563447f.zip |
ephy-embed-single: add a function to get the form auth data for a URI
Diffstat (limited to 'embed/ephy-embed-single.h')
-rw-r--r-- | embed/ephy-embed-single.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/embed/ephy-embed-single.h b/embed/ephy-embed-single.h index ad7a1d93d..6b7f36ce8 100644 --- a/embed/ephy-embed-single.h +++ b/embed/ephy-embed-single.h @@ -41,6 +41,12 @@ typedef struct _EphyEmbedSingle EphyEmbedSingle; typedef struct _EphyEmbedSingleClass EphyEmbedSingleClass; typedef struct _EphyEmbedSinglePrivate EphyEmbedSinglePrivate; +typedef struct { + char *form_username; + char *form_password; + char *username; +} EphyEmbedSingleFormAuthData; + struct _EphyEmbedSingle { GObject parent; @@ -91,6 +97,9 @@ void ephy_embed_single_set_network_status (EphyEmbedSingle *single, gboolean ephy_embed_single_get_network_status (EphyEmbedSingle *single); +GSList * ephy_embed_single_get_form_auth (EphyEmbedSingle *single, + const char *uri); + G_END_DECLS #endif |