LeviLamina
Loading...
Searching...
No Matches
StunAttributeType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cricket {
6
7enum class StunAttributeType : int {
8 MappedAddress = 1,
9 Username = 6,
10 MessageIntegrity = 8,
11 ErrorCode = 9,
12 UnknownAttributes = 10,
13 Realm = 20,
14 Nonce = 21,
15 XorMappedAddress = 32,
16 Software = 32802,
17 AlternateServer = 32803,
18 Fingerprint = 32808,
19 RetransmitCount = 65280,
20};
21
22}