Hi,

In the ip_nat_h323.c file line 394 needs to be fixed like this:

IP_NAT_ALWAYS,                          /* flags */

needs to be replaced by:

IP_NAT_HELPER_F_ALWAYS,                                 /* flags */

in the function:

static struct ip_nat_helper h225 =
        { { NULL, NULL },
          { { 0, { __constant_htons(H225_PORT) } },     /* tuple */
            { 0, { 0 }, IPPROTO_TCP } },
          { { 0, { 0xFFFF } },                          /* mask */
            { 0, { 0 }, 0xFFFF } },
          h225_nat_help,
                        /* helper */
          IP_NAT_HELPER_F_ALWAYS,                               /* flags */
          THIS_MODULE,
                                /* module */
          h225_nat_expected,
                        /* expectfn */
          "H.225" };                                    /* name */


Otherwise the h323-module won't compile!
Thanks,

     M.J. Prinsen
     http://bovendelft.xs4all.nl



Reply via email to