1*41edb306SCy Schubert /* 2*41edb306SCy Schubert * Copyright (C) 2012 by Darren Reed. 3*41edb306SCy Schubert * 4*41edb306SCy Schubert * See the IPFILTER.LICENCE file for details on licencing. 5*41edb306SCy Schubert */ 6*41edb306SCy Schubert 7*41edb306SCy Schubert #include "ipf.h" 8*41edb306SCy Schubert 9*41edb306SCy Schubert 10*41edb306SCy Schubert void 11*41edb306SCy Schubert printunit(unit) 12*41edb306SCy Schubert int unit; 13*41edb306SCy Schubert { 14*41edb306SCy Schubert 15*41edb306SCy Schubert switch (unit) 16*41edb306SCy Schubert { 17*41edb306SCy Schubert case IPL_LOGIPF : 18*41edb306SCy Schubert PRINTF("ipf"); 19*41edb306SCy Schubert break; 20*41edb306SCy Schubert case IPL_LOGNAT : 21*41edb306SCy Schubert PRINTF("nat"); 22*41edb306SCy Schubert break; 23*41edb306SCy Schubert case IPL_LOGSTATE : 24*41edb306SCy Schubert PRINTF("state"); 25*41edb306SCy Schubert break; 26*41edb306SCy Schubert case IPL_LOGAUTH : 27*41edb306SCy Schubert PRINTF("auth"); 28*41edb306SCy Schubert break; 29*41edb306SCy Schubert case IPL_LOGSYNC : 30*41edb306SCy Schubert PRINTF("sync"); 31*41edb306SCy Schubert break; 32*41edb306SCy Schubert case IPL_LOGSCAN : 33*41edb306SCy Schubert PRINTF("scan"); 34*41edb306SCy Schubert break; 35*41edb306SCy Schubert case IPL_LOGLOOKUP : 36*41edb306SCy Schubert PRINTF("lookup"); 37*41edb306SCy Schubert break; 38*41edb306SCy Schubert case IPL_LOGCOUNT : 39*41edb306SCy Schubert PRINTF("count"); 40*41edb306SCy Schubert break; 41*41edb306SCy Schubert case IPL_LOGALL : 42*41edb306SCy Schubert PRINTF("all"); 43*41edb306SCy Schubert break; 44*41edb306SCy Schubert default : 45*41edb306SCy Schubert PRINTF("unknown(%d)", unit); 46*41edb306SCy Schubert } 47*41edb306SCy Schubert } 48