blob: 84ab2425d442c7d454d9323147e6219807121c65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* ISC license. */
#ifndef APASTEC_H
#define APASTEC_H
#include <sys/types.h>
#include <skalibs/buffer.h>
#include <skalibs/tai.h>
/* send_file.c */
extern void send_file (buffer *, int, off_t, char const *, tain const *, tain *) ;
#define send_file_g(b, fd, size, file, deadline) send_file(b, fd, size, file, (deadline), &STAMP)
#endif
|