summaryrefslogtreecommitdiff
path: root/src/analysis/db/client.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2019-09-29 20:57:16 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2019-09-29 20:57:16 (GMT)
commit55bc8570f25a479b222733c4093f9ae996c9f68e (patch)
tree258773ab9cbcab5ec459527f3b3a40bf2897ce00 /src/analysis/db/client.h
parent2de826110c85feb68d6e5b09c133e2300ae4c0d0 (diff)
Handled disabled update items.
Diffstat (limited to 'src/analysis/db/client.h')
-rw-r--r--src/analysis/db/client.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/analysis/db/client.h b/src/analysis/db/client.h
index 2915f77..f7f7bcb 100644
--- a/src/analysis/db/client.h
+++ b/src/analysis/db/client.h
@@ -64,15 +64,12 @@ bool g_hub_client_start_remote(GHubClient *, const char *, const char *, bool);
/* Arrête la connexion à la base de données. */
void g_hub_client_stop(GHubClient *);
-/* Identifie le canal de communication pour envois au serveur. */
-SSL *g_hub_client_get_ssl_fd(GHubClient *);
-
-/* Marque le canal de communication comme disponible. */
-void g_hub_client_put_ssl_fd(GHubClient *, SSL *);
-
/* Effectue une demande de sauvegarde de l'état courant. */
bool g_hub_client_save(GHubClient *);
+/* Ajoute un élément à la collection d'un serveur. */
+bool g_hub_client_add_item(GHubClient *, const GDbItem *);
+
/* Active les éléments en amont d'un horodatage donné. */
bool g_hub_client_set_last_active(GHubClient *, timestamp_t);