1*57e22627SCy Schubert /* 2*57e22627SCy Schubert * Copyright (c) 1993, 1994, 1995, 1996, 1998 3*57e22627SCy Schubert * The Regents of the University of California. All rights reserved. 4*57e22627SCy Schubert * 5*57e22627SCy Schubert * Redistribution and use in source and binary forms, with or without 6*57e22627SCy Schubert * modification, are permitted provided that: (1) source code distributions 7*57e22627SCy Schubert * retain the above copyright notice and this paragraph in its entirety, (2) 8*57e22627SCy Schubert * distributions including binary code include the above copyright notice and 9*57e22627SCy Schubert * this paragraph in its entirety in the documentation or other materials 10*57e22627SCy Schubert * provided with the distribution, and (3) all advertising materials mentioning 11*57e22627SCy Schubert * features or use of this software display the following acknowledgement: 12*57e22627SCy Schubert * ``This product includes software developed by the University of California, 13*57e22627SCy Schubert * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of 14*57e22627SCy Schubert * the University nor the names of its contributors may be used to endorse 15*57e22627SCy Schubert * or promote products derived from this software without specific prior 16*57e22627SCy Schubert * written permission. 17*57e22627SCy Schubert * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED 18*57e22627SCy Schubert * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF 19*57e22627SCy Schubert * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 20*57e22627SCy Schubert */ 21*57e22627SCy Schubert 22*57e22627SCy Schubert #include "pcap/funcattrs.h" 23*57e22627SCy Schubert 24*57e22627SCy Schubert extern void rpcapd_log_set(int, int); 25*57e22627SCy Schubert 26*57e22627SCy Schubert typedef enum { 27*57e22627SCy Schubert LOGPRIO_DEBUG, 28*57e22627SCy Schubert LOGPRIO_INFO, 29*57e22627SCy Schubert LOGPRIO_WARNING, 30*57e22627SCy Schubert LOGPRIO_ERROR 31*57e22627SCy Schubert } log_priority; 32*57e22627SCy Schubert 33*57e22627SCy Schubert extern void rpcapd_log(log_priority priority, 34*57e22627SCy Schubert PCAP_FORMAT_STRING(const char *message), ...) PCAP_PRINTFLIKE(2, 3); 35