From 49a425183011692839d674004a8da63f9dcef018 Mon Sep 17 00:00:00 2001 From: Kevin Lange Date: Thu, 6 Aug 2015 15:01:11 -0700 Subject: [PATCH] Add some yelp sites to the initial dns cache --- modules/net.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/net.c b/modules/net.c index f1889f49..bc5ad9b3 100644 --- a/modules/net.c +++ b/modules/net.c @@ -980,6 +980,8 @@ static int init(void) { hashmap_set(dns_cache, "dakko.us", strdup("104.131.140.26")); hashmap_set(dns_cache, "www.toaruos.org", strdup("23.235.47.133")); + hashmap_set(dns_cache, "www.yelp.com", strdup("104.16.57.23")); + hashmap_set(dns_cache, "s3-media2.fl.yelpcdn.com", strdup("199.27.79.175")); /* /dev/net/{domain|ip}/{protocol}/{port} */ vfs_mount("/dev/net", netfs_create());