1/*
2 * Minimal debug/trace/assert driver definitions for
3 * Broadcom UPNP implementation
4 *
5 * Copyright 2004, Broadcom Corporation
6 * All Rights Reserved.
7 *
8 * THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY
9 * KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM
10 * SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
11 * FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE.
12 *
13 * $Id: upnp_dbg.h,v 1.1.1.1 2008/10/15 03:31:35 james26_jang Exp $
14 */
15
16#ifndef _upnp_dbg_
17#define _upnp_dbg_
18
19#define	UPNP_MAPPING(args)
20#define	UPNP_ERROR(args)
21#define	UPNP_TRACE(args)
22#define	UPNP_PRHDRS(i, s, h, p, n, l)
23#define	UPNP_PRPKT(m, b, n)
24#define	UPNP_INFORM(args)
25#define UPNP_TRACE_ACTION(svc, ac)
26#define	UPNP_HTTP(args)
27#define	UPNP_SOCKET(args)
28
29#define UPNP_MAPPING_ON()	0
30#define UPNP_RESPONSE_ON()	0
31#define UPNP_ERROR_ON()		0
32#define UPNP_PRHDRS_ON()	0
33#define UPNP_PRPKT_ON()		0
34#define UPNP_INFORM_ON()	0
35#define UPNP_PRINTRX_ON()	0
36#define UPNP_PRINTTX_ON()	0
37#define UPNP_HTTP_TRACE_ON()	0
38#define UPNP_HTTP_HDRS_ON()	0
39
40#define	UPNP_PREVENT(args)
41#define	UPNP_SUBSCRIBE(args)
42
43#define UPNP_ACTION(psvc, ac, args, nargs)
44#define UPNP_RESPONSE(ns, ac, args, nargs)
45#define UPNP_TRACE_ACTION_ON()	0
46#define UPNP_DUMP_ACTION_ON()	0
47
48
49
50
51#endif /* _upnp_dbg_ */
52