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

Side by Side Diff: net/base/net_error_list.h

Issue 10442098: [net/dns] Resolve AF_UNSPEC on dual-stacked systems. Sort addresses according to RFC3484. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Handle ifa_netmnask == NULL and other errors after getifaddrs. Created 8 years, 4 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file intentionally does not have header guards, it's included 5 // This file intentionally does not have header guards, it's included
6 // inside a macro to generate enum. 6 // inside a macro to generate enum.
7 7
8 // This file contains the list of network errors. 8 // This file contains the list of network errors.
9 9
10 // 10 //
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after
653 NET_ERROR(DNS_SERVER_FAILED, -802) 653 NET_ERROR(DNS_SERVER_FAILED, -802)
654 654
655 // DNS transaction timed out. 655 // DNS transaction timed out.
656 NET_ERROR(DNS_TIMED_OUT, -803) 656 NET_ERROR(DNS_TIMED_OUT, -803)
657 657
658 // The entry was not found in cache, for cache-only lookups. 658 // The entry was not found in cache, for cache-only lookups.
659 NET_ERROR(DNS_CACHE_MISS, -804) 659 NET_ERROR(DNS_CACHE_MISS, -804)
660 660
661 // Suffix search list rules prevent resolution of the given host name. 661 // Suffix search list rules prevent resolution of the given host name.
662 NET_ERROR(DNS_SEARCH_EMPTY, -805) 662 NET_ERROR(DNS_SEARCH_EMPTY, -805)
663
664 // Failed to sort addresses according to RFC3484.
665 NET_ERROR(DNS_SORT_ERROR, -806)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698