root/sbin/ipf/libipf/printdstlistpolicy.c
/*
 * Copyright (C) 2012 by Darren Reed.
 *
 * See the IPFILTER.LICENCE file for details on licencing.
 */

#include "ipf.h"


void
printdstlistpolicy(ippool_policy_t policy)
{
        switch (policy)
        {
        case IPLDP_NONE :
                PRINTF("none");
                break;
        case IPLDP_ROUNDROBIN :
                PRINTF("round-robin");
                break;
        case IPLDP_CONNECTION :
                PRINTF("weighting connection");
                break;
        case IPLDP_RANDOM :
                PRINTF("random");
                break;
        default :
                break;
        }
}