This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,20 @@
using System;
namespace System.Net.NetworkInformation.MacOsStructs
{
// Token: 0x02000194 RID: 404
internal struct sockaddr_in
{
// Token: 0x04000C63 RID: 3171
public byte sin_len;
// Token: 0x04000C64 RID: 3172
public byte sin_family;
// Token: 0x04000C65 RID: 3173
public ushort sin_port;
// Token: 0x04000C66 RID: 3174
public uint sin_addr;
}
}