Displaying 1 result from an estimated 1 matches for "pptp_outbound_pkt".
2006 Oct 23
1
[Bug 512] poptop (pptpd) will not work if ip_nat_pptp loaded
https://bugzilla.netfilter.org/bugzilla/show_bug.cgi?id=512
------- Additional Comments From yi_he@pmc-sierra.com 2006-10-23 09:09 MET -------
I've met the problem in the 2.4 kernel as well, and I modified the source
linux/net/ipv4/netfilter/ip_nat_pptp.c like this:
in function pptp_outbound_pkt():
......
switch (msg = ntohs(ctlh->messageType)) {
case PPTP_OUT_CALL_REQUEST:
cid = &pptpReq.ocreq->callID;
/* FIXME: ideally we would want to reserve a call ID
* here. current netfilter NAT core is not able to do
* this :( For now we use TCP source port. This...