libsodium: Needed for Dnscrypto-proxy Release 1.3.0
[tomato.git] / release / src / router / minidlna / tivo_beacon.h
blob738042c4cae109182d8a45631d211fcd78584a47
1 /* TiVo discovery
3 * Project : minidlna
4 * Website : http://sourceforge.net/projects/minidlna/
5 * Author : Justin Maggard
7 * MiniDLNA media server
8 * Copyright (C) 2009 Justin Maggard
10 * This file is part of MiniDLNA.
12 * MiniDLNA is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
16 * MiniDLNA is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with MiniDLNA. If not, see <http://www.gnu.org/licenses/>.
24 #include "config.h"
25 #ifdef TIVO_SUPPORT
27 * * A saved copy of a beacon from another tivo or another server
28 * */
29 struct aBeacon
31 #ifdef DEBUG
32 time_t lastSeen;
33 #endif
34 char * machine;
35 char * identity;
36 struct aBeacon *next;
39 uint32_t
40 getBcastAddress();
42 int
43 OpenAndConfTivoBeaconSocket();
45 void
46 sendBeaconMessage(int fd, struct sockaddr_in * client, int len, int broadcast);
48 void
49 ProcessTiVoBeacon(int fd);
50 #endif