mirror of
https://github.com/openstreetmap/mod_tile.git
synced 2025-08-05 18:51:43 +00:00
18 lines
248 B
C
18 lines
248 B
C
#ifndef DAEMONHELPER_H
|
|
#define DAEMONHELPER_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "protocol.h"
|
|
|
|
int send_cmd(struct protocol * cmd, int fd);
|
|
int recv_cmd(struct protocol * cmd, int fd, int block);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|