static void
t3_action_requested_cb (KmsHttpEPServer *server, const gchar *uri,
    KmsHttpEndPointAction action, gpointer data)
{
  GST_DEBUG ("Action %d requested on %s", action, uri);

  if (++signal_count == QUEUED) {
    /* Stop Http End Point Server and destroy it */
    kms_http_ep_server_stop (httpepserver);
  }
}
Exemplo n.º 2
0
void
HttpEndPointServer::stop ()
{
  kms_http_ep_server_stop (server, http_server_handler_cb, &logHandler , NULL);
}
static void
finish_test_case ()
{
  kms_http_ep_server_stop (httpepserver, stop_server_cb, NULL, NULL);
}