File: res_search.c

package info (click to toggle)
valgrind 1%3A3.6.0~svn11254%2Bnmu1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 36,460 kB
  • ctags: 39,734
  • sloc: ansic: 339,440; sh: 15,713; xml: 15,183; cpp: 6,982; asm: 6,630; perl: 5,105; makefile: 3,576; exp: 678; haskell: 250
file content (66 lines) | stat: -rw-r--r-- 1,112 bytes parent folder | download | duplicates (13)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include <stdio.h>
#include <string.h>
#include <netinet/in.h>
#include <arpa/nameser.h>
#include <resolv.h>
#include <pthread.h>

void* fn(void* arg)
{
    char* dn = (char*)arg;

    unsigned char buff[8000];

    if(-1 == res_search(dn, 1, 1, buff, 8000))
    {
        printf("Error: res_search()\n");
    }
    else
    {
        printf("Success!\n");
    }
    return 0;
}

int main(int argc, char** argv)
{
    pthread_t pid;
    if(2 != argc)
    {
        printf("Usage: %s <domain>\n", argv[0]);
        return 1;
    }

    _res.options |= RES_DEBUG;
    if(0 != res_init())
    {
        printf("Error: res_init()\n");
        return(1);
    }
#if 1
    /* Test it in a different thread -- the failure case */
    if(0 != pthread_create(&pid, 0, fn, (void*)argv[1]))
    {
        printf("Failed to create thread.\n");
        return 1;
    }

    pthread_join(pid, 0);
#else
    {
    unsigned char buff[8000];

    if(-1 == res_search(argv[1], 1, 1, buff, 8000))
    {
        printf("Error: res_search()\n");
    }
    else
    {
        printf("Success!\n");
    }
    }
#endif
    return 0;
}