LeviLamina
Loading...
Searching...
No Matches
TurnAllocateRequest.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/cricket/StunRequest.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace cricket { class StunMessage; }
11namespace cricket { class TurnPort; }
12// clang-format on
13
14namespace cricket {
15
17public:
18 // member variables
19 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 6
33 virtual void OnSent() /*override*/;
34
35 // vIndex: 2
36 virtual void OnResponse(::cricket::StunMessage* response) /*override*/;
37
38 // vIndex: 3
39 virtual void OnErrorResponse(::cricket::StunMessage* response) /*override*/;
40
41 // vIndex: 5
42 virtual void OnTimeout() /*override*/;
43
44 // vIndex: 0
45 virtual ~TurnAllocateRequest() /*override*/ = default;
46 // NOLINTEND
47
48public:
49 // member functions
50 // NOLINTBEGIN
51 MCNAPI void OnAuthChallenge(::cricket::StunMessage* response, int code);
52
53 MCNAPI void OnTryAlternate(::cricket::StunMessage* response, int code);
54
56 // NOLINTEND
57
58public:
59 // constructor thunks
60 // NOLINTBEGIN
61 MCNAPI void* $ctor(::cricket::TurnPort* port);
62 // NOLINTEND
63
64public:
65 // virtual function thunks
66 // NOLINTBEGIN
67 MCNAPI void $OnSent();
68
69 MCNAPI void $OnResponse(::cricket::StunMessage* response);
70
72
73 MCNAPI void $OnTimeout();
74 // NOLINTEND
75
76public:
77 // vftables
78 // NOLINTBEGIN
79 MCNAPI static void** $vftable();
80 // NOLINTEND
81};
82
83} // namespace cricket
Definition StunMessage.h:23
Definition StunRequest.h:14
Definition TurnAllocateRequest.h:16
MCAPI void $OnErrorResponse(::cricket::StunMessage *response)
MCAPI void OnAuthChallenge(::cricket::StunMessage *response, int code)
MCAPI void * $ctor(::cricket::TurnPort *port)
static MCAPI void ** $vftable()
MCAPI void $OnResponse(::cricket::StunMessage *response)
MCAPI TurnAllocateRequest(::cricket::TurnPort *port)
MCAPI void OnTryAlternate(::cricket::StunMessage *response, int code)
Definition TurnPort.h:39
Definition code.h:5
Definition Alias.h:14