mirror of
https://github.com/3proxy/3proxy.git
synced 2026-08-04 14:46:18 +00:00
Fix compilation issues
This commit is contained in:
parent
c1beceb24b
commit
3dc698eccd
4 changed files with 17 additions and 10 deletions
|
|
@ -28,7 +28,11 @@ void * tcppmchild(struct clientparam* param) {
|
|||
}
|
||||
if(action != PASS) RETURN(19);
|
||||
}
|
||||
RETURN (param->redirectfunc?param->redirectfunc(param):mapsocket(param, conf.timeouts[CONNECTION_L]));
|
||||
if(param->redirectfunc){
|
||||
return (*param->redirectfunc)(param);
|
||||
}
|
||||
|
||||
RETURN (mapsocket(param, conf.timeouts[CONNECTION_L]));
|
||||
CLEANRET:
|
||||
|
||||
dolog(param, param->hostname);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue