| Top |
| const gchar * | gtuber_website_get_uri () |
| void | gtuber_website_set_uri () |
| GQuark | gtuber_website_error_quark () |
void gtuber_website_set_uri (GtuberWebsite *website,const gchar *uri);
Set current requested URI.
This is only useful for plugin implementations where user requested URI needs to be altered, otherwise GtuberClient will set it automatically.
[skip]
struct GtuberWebsiteClass {
GObjectClass parent_class;
gboolean handles_input_stream;
GtuberFlow (* create_request) (GtuberWebsite *website,
GtuberMediaInfo *info,
SoupMessage **msg,
GError **error);
GtuberFlow (* parse_response) (GtuberWebsite *website,
gchar *data,
GtuberMediaInfo *info,
GError **error);
GtuberFlow (* parse_input_stream) (GtuberWebsite *website,
GInputStream *stream,
GtuberMediaInfo *info,
GError **error);
};
When set to |
||
Create and pass SoupMessage to send. |
||
Read SoupMessage response body and fill GtuberMediaInfo. |
||
Read GInputStream and fill GtuberMediaInfo. |