File: gethostbyname.c

package info (click to toggle)
socks4-server 4.3.beta2-20
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 1,512 kB
  • ctags: 1,778
  • sloc: ansic: 19,305; makefile: 399; sh: 52
file content (31 lines) | stat: -rw-r--r-- 651 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <sys/types.h>
#include <sys/socket.h>

#include <stdio.h>

#include "wrap.h"

int REAL(gethostbyname)(int  sockfd, unsigned int backlog )
{
  GETFUNC("gethostbyname", TRY_LIBC, -1, (int (*)(int  sockfd, unsigned int backlog )), (sockfd, backlog), int);
}

int  gethostbyname(int  sockfd, unsigned int backlog )
{
  int ret;

//  printf("gethostbyname(%d)\n", InSocksFunctions);

  InSocksFunctions++;

  if (InSocksFunctions == 1)
    ret = LIBPREFIX(gethostbyname)(sockfd, backlog);
  else
    ret = REAL(gethostbyname)(sockfd, backlog);

  InSocksFunctions--;
    
//  printf("gethostbyname(%d) ende\n", InSocksFunctions);

  return ret;
}