File: upnp.h

package info (click to toggle)
mt-daapd 0.9~r1696.dfsg-16
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 4,000 kB
  • ctags: 3,220
  • sloc: ansic: 25,552; sh: 9,496; perl: 454; xml: 339; makefile: 225
file content (46 lines) | stat: -rwxr-xr-x 1,504 bytes parent folder | download | duplicates (2)
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
35
36
37
38
39
40
41
42
43
44
45
46
/*
 * $Id: $
 *
 * Header functions for UPnP discovery
 *
 * Copyright (C) 2007 Ron Pedde (ron@pedde.com)
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

/**
 * This could probably be as easily (or better?) done via some
 * UPnP library, but I don't see any that are cross-platform to
 * the variety of platforms I want to port to, not to mention that
 * it's just some simple UDP broadcasts.
 */


#ifndef _UPNP_H_
#define _UPNP_H_

#define UPNP_AD_DEVICE   1
#define UPNP_AD_SERVICE  2
#define UPNP_AD_ROOT     3
#define UPNP_AD_UUID     4

extern int upnp_init(void);
extern int upnp_deinit(void);
extern void upnp_add_packet(char *group_id, int type, char *location,
                            char *namespace, char *name, int version,
                            char *body);
extern char *upnp_uuid();

#endif /* _UPNP_H_ */