Retry only for https protocol
[elinks.git] / src / session / location.h
bloba534b7392daf90d72e96d0ae32c8d6e5807d7a7e
1 #ifndef EL__SESSION_LOCATION_H
2 #define EL__SESSION_LOCATION_H
4 #include "session/download.h"
5 #include "util/lists.h"
6 #include "viewer/text/vs.h"
8 struct location {
9 LIST_HEAD(struct location);
11 LIST_OF(struct frame) frames;
12 struct download download;
13 struct view_state vs;
17 void copy_location(struct location *, struct location *);
19 /** You probably want to call del_from_history() first!
20 * @relates location */
21 void destroy_location(struct location *);
23 #endif