* for instance). This ensures that the entry does not get reinserted at the
* beginning of the tree every time.
*/
-int ssl_ocsp_update_insert_after_error(struct certificate_ocsp *ocsp)
+static int ssl_ocsp_update_insert_after_error(struct certificate_ocsp *ocsp)
{
int replay_delay = 0;
return 0;
}
-void ocsp_update_response_stline_cb(struct httpclient *hc)
+static void ocsp_update_response_stline_cb(struct httpclient *hc)
{
struct task *task = hc->caller;
task_wakeup(task, TASK_WOKEN_MSG);
}
-void ocsp_update_response_headers_cb(struct httpclient *hc)
+static void ocsp_update_response_headers_cb(struct httpclient *hc)
{
struct task *task = hc->caller;
task_wakeup(task, TASK_WOKEN_MSG);
}
-void ocsp_update_response_body_cb(struct httpclient *hc)
+static void ocsp_update_response_body_cb(struct httpclient *hc)
{
struct task *task = hc->caller;
task_wakeup(task, TASK_WOKEN_MSG);
}
-void ocsp_update_response_end_cb(struct httpclient *hc)
+static void ocsp_update_response_end_cb(struct httpclient *hc)
{
struct task *task = hc->caller;
return ret;
}
-int ocsp_update_postparser_init()
+static int ocsp_update_postparser_init()
{
int ret = 0;
char *err = NULL;