mirror of https://github.com/yandex/odyssey.git
44 lines
859 B
C
44 lines
859 B
C
|
|
/*
|
|
* Odyssey.
|
|
*
|
|
* Scalable PostgreSQL connection pooler.
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
#include <inttypes.h>
|
|
#include <assert.h>
|
|
|
|
#include <machinarium.h>
|
|
#include <kiwi.h>
|
|
#include <odyssey.h>
|
|
|
|
int
|
|
od_cancel(od_global_t *global,
|
|
od_rule_storage_t *storage,
|
|
kiwi_key_t *key,
|
|
od_id_t *server_id)
|
|
{
|
|
od_instance_t *instance = global->instance;
|
|
od_log(&instance->logger,
|
|
"cancel",
|
|
NULL,
|
|
NULL,
|
|
"cancel for %s%.*s",
|
|
server_id->id_prefix,
|
|
sizeof(server_id->id),
|
|
server_id->id);
|
|
od_server_t server;
|
|
od_server_init(&server);
|
|
server.global = global;
|
|
od_backend_connect_cancel(&server, storage, key);
|
|
od_backend_close_connection(&server);
|
|
od_backend_close(&server);
|
|
return 0;
|
|
}
|