diff options
Diffstat (limited to 'src/core.h')
-rw-r--r-- | src/core.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -29,6 +29,7 @@ enum tip_client_state { enum tip_http_method { TIP_METHOD_GET = 0, TIP_METHOD_HEAD, + TIP_METHOD_POST, }; struct tip_client { @@ -69,6 +70,8 @@ static inline bool tip_client_large_file(const struct tip_client *cli) void tip_client_pending(struct tip_client *cli); bool tip_client_redirect(struct tip_client *cli); +int tip_client_redirect_create(const struct tip_client *cli); +void tip_client_activate_pending(void); extern struct ev_loop *tip_main_loop; |