22 lines
513 B
C
22 lines
513 B
C
#ifndef DEPLOYD_DEPLOYS_H_
|
|
#define DEPLOYD_DEPLOYS_H_
|
|
|
|
#include "conf.h"
|
|
|
|
#include "def.h"
|
|
#include "log.h"
|
|
|
|
#include "proto.h"
|
|
|
|
#include <openssl/ssl.h>
|
|
|
|
#define DP_DEPLOYS_LOG "deploys"
|
|
|
|
bool dp_trigger_online_deploy(SSL *ssl,
|
|
const char *domain,
|
|
size_t domain_len,
|
|
dp_Logger *logger,
|
|
dp_DeployCommand command,
|
|
bool is_unsafe);
|
|
|
|
#endif /* DEPLOYD_DEPLOYS_H_ */
|