141edb306SCy Schubert /* 241edb306SCy Schubert * Copyright (C) 2012 by Darren Reed. 341edb306SCy Schubert * 441edb306SCy Schubert * See the IPFILTER.LICENCE file for details on licencing. 541edb306SCy Schubert */ 641edb306SCy Schubert 741edb306SCy Schubert #include "ipf.h" 841edb306SCy Schubert 941edb306SCy Schubert 1041edb306SCy Schubert void printunit(int unit)11*efeb8bffSCy Schubertprintunit(int unit) 1241edb306SCy Schubert { 1341edb306SCy Schubert 1441edb306SCy Schubert switch (unit) 1541edb306SCy Schubert { 1641edb306SCy Schubert case IPL_LOGIPF : 1741edb306SCy Schubert PRINTF("ipf"); 1841edb306SCy Schubert break; 1941edb306SCy Schubert case IPL_LOGNAT : 2041edb306SCy Schubert PRINTF("nat"); 2141edb306SCy Schubert break; 2241edb306SCy Schubert case IPL_LOGSTATE : 2341edb306SCy Schubert PRINTF("state"); 2441edb306SCy Schubert break; 2541edb306SCy Schubert case IPL_LOGAUTH : 2641edb306SCy Schubert PRINTF("auth"); 2741edb306SCy Schubert break; 2841edb306SCy Schubert case IPL_LOGSYNC : 2941edb306SCy Schubert PRINTF("sync"); 3041edb306SCy Schubert break; 3141edb306SCy Schubert case IPL_LOGSCAN : 3241edb306SCy Schubert PRINTF("scan"); 3341edb306SCy Schubert break; 3441edb306SCy Schubert case IPL_LOGLOOKUP : 3541edb306SCy Schubert PRINTF("lookup"); 3641edb306SCy Schubert break; 3741edb306SCy Schubert case IPL_LOGCOUNT : 3841edb306SCy Schubert PRINTF("count"); 3941edb306SCy Schubert break; 4041edb306SCy Schubert case IPL_LOGALL : 4141edb306SCy Schubert PRINTF("all"); 4241edb306SCy Schubert break; 4341edb306SCy Schubert default : 4441edb306SCy Schubert PRINTF("unknown(%d)", unit); 4541edb306SCy Schubert } 4641edb306SCy Schubert } 47