In some email I received from Kevin White, sie wrote:
[...]
>         natlookup.nl_inport = ntohs(laddr.sin_port);
>         natlookup.nl_outport = ntohs(faddr.sin_port);
[...]

For 3.4.29 to work, I believe you need to change these two lines to:

          natlookup.nl_inport = laddr.sin_port;
          natlookup.nl_outport = faddr.sin_port;

Darren

Reply via email to