1 /* Copyright 2013 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
5 #include "nacl_io/ossocket.h"
7 #ifdef PROVIDES_SOCKET_API
11 const char* hstrerror(int err
) {
14 return "The specified host is unknown.";
16 return "The requested name is valid but does not have an IP address.";
18 return "A nonrecoverable name server error occurred.";
20 return "A temporary error occurred on an authoritative name server. "
23 return "Internal error in gethostbyname.";
27 snprintf(rtn
, sizeof(rtn
), "Unknown error in gethostbyname: %d.", err
);
31 #endif /* PROVIDES_SOCKET_API */