github.com/yanyiwu/go@v0.0.0-20150106053140-03d6637dbb7f/src/net/cgo_stub.go (about)

     1  // Copyright 2011 The Go Authors.  All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  // +build !cgo netgo
     6  
     7  // Stub cgo routines for systems that do not use cgo to do network lookups.
     8  
     9  package net
    10  
    11  func cgoLookupHost(name string) (addrs []string, err error, completed bool) {
    12  	return nil, nil, false
    13  }
    14  
    15  func cgoLookupPort(network, service string) (port int, err error, completed bool) {
    16  	return 0, nil, false
    17  }
    18  
    19  func cgoLookupIP(name string) (addrs []IP, err error, completed bool) {
    20  	return nil, nil, false
    21  }
    22  
    23  func cgoLookupCNAME(name string) (cname string, err error, completed bool) {
    24  	return "", nil, false
    25  }