/* Shared header file for iptables extension for the GTPU target and GTPu KLM
 *
 * Copyright (c) 2010-2011 Polaris Networks
 * Author: Pradip Biswas <pradip_biswas@polarisnetworks.net>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 */

enum xt_gtpurh_mode_
{
    PARAM_GTPURH_ACTION_REM = 1 << 9,
};

struct xt_gtpurh_target_info
{
    u_int32_t laddr   __attribute__((aligned(8)));
    u_int32_t raddr   __attribute__((aligned(8)));
    u_int32_t ltun    __attribute__((aligned(8)));
    u_int32_t rtun    __attribute__((aligned(8)));
    u_int32_t action  __attribute__((aligned(8)));
};