forked from mariusae/trickle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
trickledu.h
28 lines (25 loc) · 943 Bytes
/
trickledu.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
* trickledu.h
*
* Copyright (c) 2003 Marius Aamodt Eriksen <marius@monkey.org>
* All rights reserved.
*
* $Id: trickledu.h,v 1.7 2004/02/13 06:11:21 marius Exp $
*/
#ifndef TRICKLE_TRICKLEDU_H
#define TRICKLE_TRICKLEDU_H
void trickled_configure(char *, int (*)(int, int, int),
ssize_t (*)(int, void *, size_t),
ssize_t (*)(int, const void *, size_t),
int (*)(int), char *);
void trickled_open(int *);
int trickled_update(short, size_t);
int trickled_delay(short, size_t *);
struct timeval *trickled_getdelay(short, size_t *);
int trickled_sendmsg(struct msg *);
int trickled_recvmsg(struct msg *);
void trickled_ctl_open(int *);
int trickled_getinfo(uint32_t *, uint32_t *,
uint32_t *, uint32_t *);
void trickled_close(int *);
#endif /* TRICKLE_TRICKLEDU_H */