add handleredirect() to symbols

This commit is contained in:
Vladimir Dubrovin 2022-06-24 10:44:28 +03:00
parent 55d1bbe155
commit 4ad05d1565
2 changed files with 2 additions and 1 deletions

View File

@ -74,6 +74,7 @@ struct symbol symbols[] = {
{symbols+47, "parsestr", (void *) parsestr},
{symbols+48, "make_ace", (void *) make_ace},
{symbols+49, "freeacl", (void *) freeacl},
{symbols+50, "handleredirect", (void *) handleredirect},
{NULL, "", NULL}
};

View File

@ -191,7 +191,7 @@ int doauth(struct clientparam * param);
int strongauth(struct clientparam * param);
void trafcountfunc(struct clientparam *param);
unsigned bandlimitfunc(struct clientparam *param, unsigned nbytesin, unsigned nbytesout);
int handleredirect(struct clientparam * param, struct ace * acentry);
int scanaddr(const unsigned char *s, unsigned long * ip, unsigned long * mask);
int myinet_ntop(int af, void *src, char *dst, socklen_t size);