Beispiel #1
0
        int ISocketsDriver.getaddrinfo(IntPtr nodename, IntPtr servname, IntPtr hints, out IntPtr res)
        {
            res = IntPtr.Zero;

            int ret = NativeSockets.getaddrinfo(nodename, servname, hints, out res);

            StoreLastError();

            return(ret);
        }