21 lines
275 B
C#
21 lines
275 B
C#
|
using System;
|
||
|
|
||
|
public struct RelayJoinData
|
||
|
{
|
||
|
public string JoinCode;
|
||
|
|
||
|
public string IPv4Address;
|
||
|
|
||
|
public ushort Port;
|
||
|
|
||
|
public Guid AllocationID;
|
||
|
|
||
|
public byte[] AllocationIDBytes;
|
||
|
|
||
|
public byte[] ConnectionData;
|
||
|
|
||
|
public byte[] HostConnectionData;
|
||
|
|
||
|
public byte[] Key;
|
||
|
}
|