summaryrefslogtreecommitdiffstats
path: root/src/wol.h
blob: 8a6c9749e2cb83ddfd928d6b1b3b04649e9ac4b3 (plain)
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
29
30
31
32
33
34
#ifndef _OG_WOL_H_
#define _OG_WOL_H_

#define OG_WOL_SEQUENCE		6
#define OG_WOL_MACADDR_LEN	6
#define OG_WOL_REPEAT		16
#define OG_WOL_PORT		9

#include "list.h"
#include <ev.h>
#include <stdbool.h>

struct wol_msg {
	char wol_sequence_ff[OG_WOL_SEQUENCE];
	char mac_addr[OG_WOL_REPEAT][OG_WOL_MACADDR_LEN];
};

int wol_socket_open(void);
int wake_up(int s, const struct in_addr *addr, const struct in_addr *netmask,
	    const char *mac, uint32_t wol_delivery_type);

struct og_client_wol {
	struct list_head	list;
	struct in_addr		addr;
	struct ev_timer		timer;
};

struct og_client_wol *og_client_wol_create(const struct in_addr *addr);
struct og_client_wol *og_client_wol_find(const struct in_addr *addr);
void og_client_wol_refresh(struct og_client_wol *cli_wol);
void og_client_wol_destroy(struct og_client_wol *cli_wol);
const char *og_client_wol_status(const struct og_client_wol *wol);

#endif