~xnox/ubuntu/trusty/gcc-arm-linux-androideabi/dima

« back to all changes in this revision

Viewing changes to android/bionic/libc/netbsd/resolv/res_private.h

  • Committer: Package Import Robot
  • Author(s): Dmitrijs Ledkovs
  • Date: 2013-07-05 10:12:24 UTC
  • Revision ID: package-import@ubuntu.com-20130705101224-6qo3e8jbz8p31aa1
Tags: upstream-0.20130705.1
ImportĀ upstreamĀ versionĀ 0.20130705.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*      $NetBSD: res_private.h,v 1.1.1.1 2004/05/20 17:18:54 christos Exp $     */
 
2
 
 
3
#ifndef res_private_h
 
4
#define res_private_h
 
5
 
 
6
struct __res_state_ext {
 
7
        union res_sockaddr_union nsaddrs[MAXNS];
 
8
        struct sort_list {
 
9
                int     af;
 
10
                union {
 
11
                        struct in_addr  ina;
 
12
                        struct in6_addr in6a;
 
13
                } addr, mask;
 
14
        } sort_list[MAXRESOLVSORT];
 
15
        char nsuffix[64];
 
16
        char nsuffix2[64];
 
17
};
 
18
 
 
19
extern int
 
20
res_ourserver_p(const res_state statp, const struct sockaddr *sa);
 
21
 
 
22
#endif