File: src\libraries\Common\src\Interop\Unix\System.Native\Interop.GetNameInfo.cs
Web Access
Project: src\src\libraries\System.Net.NameResolution\src\System.Net.NameResolution.csproj (System.Net.NameResolution)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System;
using System.Runtime.InteropServices;
 
internal static partial class Interop
{
    internal static partial class Sys
    {
        [Flags]
        internal enum GetNameInfoFlags : int
        {
            NI_NAMEREQD     = 0x1,
            NI_NUMERICHOST  = 0x2,
        }
 
        [LibraryImport(Libraries.SystemNative, EntryPoint = "SystemNative_GetNameInfo")]
        internal static unsafe partial int GetNameInfo(
            byte* address,
            uint addressLength,
            byte isIpv6,
            byte* host,
            uint hostLength,
            byte* service,
            uint serviceLength,
            GetNameInfoFlags flags);
    }
}