OpenClonk
C4PacketConnRe Class Reference

#include <C4Network2IO.h>

Inheritance diagram for C4PacketConnRe:
[legend]
Collaboration diagram for C4PacketConnRe:
[legend]

Public Member Functions

 C4PacketConnRe ()
 
 C4PacketConnRe (bool fOK, bool fWrongPassword, const char *szMsg=nullptr)
 
bool isOK () const
 
bool isPasswordWrong () const
 
const char * getMsg () const
 
void CompileFunc (StdCompiler *pComp) override
 
C4NetIOPacket pack (const C4NetIO::addr_t &addr=C4NetIO::addr_t()) const
 
C4NetIOPacket pack (uint8_t cStatus, const C4NetIO::addr_t &addr=C4NetIO::addr_t()) const
 
void unpack (const C4NetIOPacket &Pkt, char *pStatus=nullptr)
 

Protected Attributes

bool fOK
 
bool fWrongPassword
 
StdStrBuf szMsg
 

Detailed Description

Definition at line 372 of file C4Network2IO.h.

Constructor & Destructor Documentation

◆ C4PacketConnRe() [1/2]

C4PacketConnRe::C4PacketConnRe ( )
default

◆ C4PacketConnRe() [2/2]

C4PacketConnRe::C4PacketConnRe ( bool  fOK,
bool  fWrongPassword,
const char *  szMsg = nullptr 
)

Definition at line 422 of file C4Packet2.cpp.

423  : fOK(fnOK),
425  szMsg(sznMsg, true)
426 {
427 }
StdStrBuf szMsg
Definition: C4Network2IO.h:380

Member Function Documentation

◆ CompileFunc()

void C4PacketConnRe::CompileFunc ( StdCompiler pComp)
overridevirtual

Implements C4PacketBase.

Definition at line 429 of file C4Packet2.cpp.

430 {
431  pComp->Value(mkNamingAdapt(fOK, "OK", true));
432  pComp->Value(mkNamingAdapt(szMsg, "Message", ""));
433  pComp->Value(mkNamingAdapt(fWrongPassword, "WrongPassword", false));
434 }
StdNamingAdapt< T > mkNamingAdapt(T &&rValue, const char *szName)
Definition: StdAdaptors.h:92
void Value(const T &rStruct)
Definition: StdCompiler.h:161

References fOK, fWrongPassword, mkNamingAdapt(), szMsg, and StdCompiler::Value().

Here is the call graph for this function:

◆ getMsg()

const char* C4PacketConnRe::getMsg ( ) const
inline

Definition at line 385 of file C4Network2IO.h.

385 { return szMsg.getData(); }
const char * getData() const
Definition: StdBuf.h:442

References StdStrBuf::getData(), and szMsg.

Referenced by C4Network2::HandleConnRe().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ isOK()

bool C4PacketConnRe::isOK ( ) const
inline

Definition at line 383 of file C4Network2IO.h.

383 { return fOK; }

References fOK.

Referenced by C4Network2::HandleConnRe().

Here is the caller graph for this function:

◆ isPasswordWrong()

bool C4PacketConnRe::isPasswordWrong ( ) const
inline

Definition at line 384 of file C4Network2IO.h.

384 { return fWrongPassword; }

References fWrongPassword.

Referenced by C4Network2::HandleConnRe().

Here is the caller graph for this function:

◆ pack() [1/2]

C4NetIOPacket C4PacketBase::pack ( const C4NetIO::addr_t addr = C4NetIO::addr_t()) const
inherited

Definition at line 150 of file C4Packet2.cpp.

151 {
152  return C4NetIOPacket(DecompileToBuf<StdCompilerBinWrite>(*this), addr);
153 }

Referenced by MkC4NetIOPacket().

Here is the caller graph for this function:

◆ pack() [2/2]

C4NetIOPacket C4PacketBase::pack ( uint8_t  cStatus,
const C4NetIO::addr_t addr = C4NetIO::addr_t() 
) const
inherited

Definition at line 155 of file C4Packet2.cpp.

156 {
157  return C4NetIOPacket(DecompileToBuf<StdCompilerBinWrite>(mkInsertAdapt(mkDecompileAdapt(*this), cStatus)), addr);
158 }
StdInsertAdapt< T, I > mkInsertAdapt(T &&rObj, I &&rIns, bool fBefore=true)
Definition: StdAdaptors.h:469
StdDecompileAdapt< T > mkDecompileAdapt(const T &rValue)
Definition: StdAdaptors.h:153

References mkDecompileAdapt(), and mkInsertAdapt().

Here is the call graph for this function:

◆ unpack()

void C4PacketBase::unpack ( const C4NetIOPacket Pkt,
char *  pStatus = nullptr 
)
inherited

Definition at line 160 of file C4Packet2.cpp.

161 {
162  if (pStatus) *pStatus = Pkt.getStatus();
163  CompileFromBuf<StdCompilerBinRead>(*this, pStatus ? Pkt.getPBuf() : Pkt.getRef());
164 }
uint8_t getStatus() const
Definition: C4NetIO.h:319
StdBuf getPBuf() const
Definition: C4NetIO.h:322
C4NetIOPacket getRef() const
Definition: C4NetIO.h:325

References C4NetIOPacket::getPBuf(), C4NetIOPacket::getRef(), and C4NetIOPacket::getStatus().

Referenced by C4IDPacket::C4IDPacket(), and C4Network2IO::HandlePacket().

Here is the call graph for this function:
Here is the caller graph for this function:

Member Data Documentation

◆ fOK

bool C4PacketConnRe::fOK
protected

Definition at line 379 of file C4Network2IO.h.

Referenced by CompileFunc(), and isOK().

◆ fWrongPassword

bool C4PacketConnRe::fWrongPassword
protected

Definition at line 379 of file C4Network2IO.h.

Referenced by CompileFunc(), and isPasswordWrong().

◆ szMsg

StdStrBuf C4PacketConnRe::szMsg
protected

Definition at line 380 of file C4Network2IO.h.

Referenced by CompileFunc(), and getMsg().


The documentation for this class was generated from the following files: