Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Side by Side Diff: fusl/src/network/lookup.h

Issue 1689833004: [fusl] Update fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: remove stray space Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fusl/src/malloc/malloc_usable_size.c ('k') | fusl/src/network/lookup_name.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #ifndef LOOKUP_H 1 #ifndef LOOKUP_H
2 #define LOOKUP_H 2 #define LOOKUP_H
3 3
4 #include <stdint.h> 4 #include <stdint.h>
5 #include <stddef.h>
5 6
6 struct address { 7 struct address {
7 int family; 8 int family;
8 unsigned scopeid; 9 unsigned scopeid;
9 uint8_t addr[16]; 10 uint8_t addr[16];
10 int sortkey; 11 int sortkey;
11 }; 12 };
12 13
13 struct service { 14 struct service {
14 uint16_t port; 15 uint16_t port;
15 unsigned char proto, socktype; 16 unsigned char proto, socktype;
16 }; 17 };
17 18
19 #define MAXNS 3
20
21 struct resolvconf {
22 struct address ns[MAXNS];
23 unsigned nns, attempts, ndots;
24 unsigned timeout;
25 };
26
18 /* The limit of 48 results is a non-sharp bound on the number of addresses 27 /* The limit of 48 results is a non-sharp bound on the number of addresses
19 * that can fit in one 512-byte DNS packet full of v4 results and a second 28 * that can fit in one 512-byte DNS packet full of v4 results and a second
20 * packet full of v6 results. Due to headers, the actual limit is lower. */ 29 * packet full of v6 results. Due to headers, the actual limit is lower. */
21 #define MAXADDRS 48 30 #define MAXADDRS 48
22 #define MAXSERVS 2 31 #define MAXSERVS 2
23 32
24 int __lookup_serv(struct service buf[static MAXSERVS], const char *name, int pro to, int socktype, int flags); 33 int __lookup_serv(struct service buf[static MAXSERVS], const char *name, int pro to, int socktype, int flags);
25 int __lookup_name(struct address buf[static MAXADDRS], char canon[static 256], c onst char *name, int family, int flags); 34 int __lookup_name(struct address buf[static MAXADDRS], char canon[static 256], c onst char *name, int family, int flags);
26 int __lookup_ipliteral(struct address buf[static 1], const char *name, int famil y); 35 int __lookup_ipliteral(struct address buf[static 1], const char *name, int famil y);
27 36
37 int __get_resolv_conf(struct resolvconf *, char *, size_t);
38
28 #endif 39 #endif
OLDNEW
« no previous file with comments | « fusl/src/malloc/malloc_usable_size.c ('k') | fusl/src/network/lookup_name.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698