DABC (Data Acquisition Backbone Core)  2.9.9
Public Member Functions | Protected Types | Protected Member Functions | Protected Attributes | Friends
dabc::SocketCommandClient Class Reference

Client side of command connection between two nodes. More...

#include <dabc/SocketCommandChannel.h>

Inheritance diagram for dabc::SocketCommandClient:
dabc::Worker dabc::Object

Public Member Functions

 SocketCommandClient (Reference parent, const std::string &name, SocketAddon *addon, const std::string &hostname="", double reconnect=0.)
 
virtual ~SocketCommandClient ()
 
- Public Member Functions inherited from dabc::Worker
bool ActivateTimeout (double tmout_sec)
 Method used to produce timeout events in the worker. More...
 
Command Assign (Command cmd)
 ! Assign command with processor before command be submitted to other processor This produce ReplyCommand() call when command execution is finished Command itself returned if operation was successful, otherwise null() command More...
 
void AssignAddon (WorkerAddon *addon)
 Assigns addon to the worker Should be called before worker assigned to the thread. More...
 
bool AssignToThread (ThreadRef thrd, bool sync=true)
 Assign worker to thread, worker becomes active immediately. More...
 
bool CanSubmitCommand () const
 Returns true if command can be submitted to worker. More...
 
RecordField Cfg (const std::string &name, Command cmd=nullptr) const
 Returns configuration field of specified name Configuration value of specified name searched in following places: More...
 
virtual const char * ClassName () const
 Returns class name of the object instance. More...
 
bool DettachFromThread ()
 Detach worker from the thread, later worker can be assigned to some other thread Method especially useful to normally finish object recursion (if it possible). More...
 
bool Execute (Command cmd, double tmout=-1.)
 Execute command in the processor. More...
 
bool Execute (const std::string &cmd, double tmout=-1.)
 
bool HasThread () const
 Indicates if pointer on thread is not zero; thread-safe. More...
 
bool IsOwnThread () const
 Returns true if called from thread. More...
 
bool MakeThreadForWorker (const std::string &thrdname="")
 Creates appropriate thread for worker and assign worker to the thread. More...
 
Parameter Par (const std::string &name) const
 Returns reference on worker parameter object. More...
 
virtual std::string RequiredThrdClass () const
 Method returns name of required thread class for processor. More...
 
void SetWorkerPriority (int nq)
 
bool Submit (Command cmd)
 Submit command for execution in the processor. More...
 
ThreadRef thread ()
 Return reference on the worker thread; thread-safe. More...
 
std::string ThreadName () const
 Returns name of the worker thread; thread-safe
More...
 
 Worker (Reference parent, const std::string &name)
 
std::string WorkerAddress (bool full=true)
 Return address, which can be used to submit command to the worker If full specified, command can be submitted from any node, which has connection to this node. More...
 
uint32_t WorkerId () const
 
int WorkerPriority () const
 
virtual ~Worker ()
 
- Public Member Functions inherited from dabc::Object
bool AddChild (Object *child, bool withmutex=true) throw ()
 Add object to list of child objects, thread safe More...
 
bool AddChildAt (Object *child, unsigned pos, bool withmutex=true)
 Add object to list of child objects at specified position. More...
 
virtual void BuildFieldsMap (RecordFieldsMap *cont)
 Fill fields map, which is relevant for the object Objects hierarchy produced from dabc::Manager. More...
 
ObjectFindChild (const char *name) const
 returns pointer on child object with given name More...
 
Reference FindChildRef (const char *name, bool force=false) const throw ()
 returns reference on child object with given name More...
 
bool GetAllChildRef (ReferencesVector *vect) const
 
ObjectGetChild (unsigned n) const
 returns pointer on child object More...
 
Reference GetChildRef (unsigned n) const
 returns reference on child object More...
 
Reference GetFolder (const std::string &name, bool force=false) throw ()
 Return folder of specified name, no special symbols allowed. More...
 
const char * GetName () const
 Returns name of the object, thread safe More...
 
ObjectGetParent () const
 Returns pointer on parent object, thread safe More...
 
Reference GetParentRef () const
 
bool IsChildsHidden () const
 Return true if object wants to hide childs from hierarchy scan, thread safe More...
 
bool IsHidden () const
 Return true if object wants to be hidden from hierarchy scan, thread safe More...
 
bool IsLogging () const
 Return true if object selected for logging, thread safe More...
 
bool IsName (const char *str) const
 Checks if object name is same as provided string, thread safe More...
 
bool IsName (const char *str, int len) const
 Checks if object name is same as provided, thread safe More...
 
bool IsName (const std::string &str) const
 Checks if object name is same as provided string, thread safe More...
 
bool IsNameMatch (const std::string &mask) const
 Check if object name match to the mask. More...
 
bool IsOwner () const
 Returns true if object is owner of its children, thread safe More...
 
bool IsParent (Object *obj) const
 Checks if specified argument is in the list of object parents. More...
 
bool IsTopXmlLevel () const
 Return true if object should be searched in the top level of the xml file, thread safe More...
 
std::string ItemName (bool compact=true) const
 Produce string, which can be used as name argument in dabc::mgr.FindItem(name) call. More...
 
unsigned NumChilds () const
 returns number of child objects More...
 
 Object (const std::string &name, unsigned flags=flIsOwner)
 Resolve problem with child-parent mutex locking. More...
 
 Object (Reference parent, const std::string &name, unsigned flags=flIsOwner)
 
virtual void Print (int lvl=0)
 Print object content on debug output. More...
 
bool RemoveChild (Object *child, bool cleanup=true) throw ()
 Detach child from parent object If cleanup==true and parent is owner of child, child will be destroyed. More...
 
bool RemoveChildAt (unsigned n, bool cleanup=true) throw ()
 Detach child object from parent at specified position If cleanup==true and object is owner of child, child will be destroyed. More...
 
bool RemoveChilds (bool cleanup=true)
 Remove all childs. More...
 
void SetLogging (bool on=true)
 Sets logging flag, thread safe More...
 
virtual ~Object ()
 

Protected Types

enum  { headerDabc = 123707321 }
 
enum  ECmdDataKindNew { kindCommand = 1 , kindReply = 2 , kindCancel = 3 , kindDisconnect = 4 }
 
enum  EEVent { evntActivate = SocketAddon::evntSocketLastInfo + 1 }
 
enum  ERecvState { recvInit , recvHeader , recvDevConnect , recvData }
 
enum  EState { stConnecting , stWorking , stClosing , stFailure }
 
- Protected Types inherited from dabc::Object
enum  EFlags {
  flStateMask = 0x000f , flIsOwner = 0x0010 , flCleanup = 0x0020 , flHasThread = 0x0040 ,
  flAutoDestroy = 0x0080 , flLogging = 0x0100 , flNoMutex = 0x0200 , flHidden = 0x0400 ,
  flChildsHidden = 0x0800 , flTopXmlLevel = 0x1000
}
 

Protected Member Functions

void AddCommand (dabc::Command cmd, bool asreply=false)
 Submit command to send queue, if queue is empty start sending immediately. More...
 
void CloseClient (bool iserr=false, const char *msg=0)
 Called when connection must be closed due to the error. More...
 
bool EnsureRecvBuffer (unsigned strsize)
 
virtual int ExecuteCommand (Command cmd)
 Main method where commands are executed. More...
 
bool ExecuteCommandByItself (Command cmd)
 
double ExtraClientTimeout () const
 
double ExtraServerTimeout () const
 
virtual void OnThreadAssigned ()
 
virtual void ProcessEvent (const EventId &)
 
void ProcessRecvPacket ()
 Method called, when complete packet (header + raw data) is received. More...
 
virtual double ProcessTimeout (double last_diff)
 
virtual bool ReplyCommand (Command cmd)
 Reimplement this method to react on command reply Return true if command can be destroyed by framework. More...
 
void SendCommand (dabc::Command cmd, bool asreply=false)
 Send next command to the remote. More...
 
void SendSubmittedCommands ()
 Send submitted commands to remote. More...
 
- Protected Member Functions inherited from dabc::Worker
bool _FireDoNothingEvent ()
 
bool _FireEvent (uint16_t evid)
 
bool _FireEvent (uint16_t evid, uint32_t arg, int pri=-1)
 
bool _IsFireEvent () const
 
bool ActivateMainLoop ()
 
virtual void BeforeHierarchyScan (Hierarchy &h)
 Method called before publisher makes next snapshot of hierarchy. More...
 
void CancelCommands ()
 
void CleanupPublisher (bool sync=true)
 Release reference on publisher and unsubscribe/unpublish all registered entries. More...
 
CommandDefinition CreateCmdDef (const std::string &name)
 
virtual Parameter CreatePar (const std::string &name, const std::string &kind="")
 
virtual bool DestroyByOwnThread ()
 Inherited method from Object, invoked at the moment when worker requested to be destroyed by its thread. More...
 
bool DestroyPar (const std::string &name)
 Method must be used if worker wants to destroy parameter. More...
 
virtual void DoWorkerAfterMainLoop ()
 Internal - function executed after leaving main loop. More...
 
virtual void DoWorkerMainLoop ()
 Internal - entrance function for main loop execution. More...
 
bool ExecuteIn (Worker *dest, Command cmd)
 Executes command in specified worker. More...
 
virtual bool Find (ConfigIO &cfg)
 Method to locate object in xml file. More...
 
bool FireEvent (uint16_t evid)
 
bool FireEvent (uint16_t evid, uint32_t arg, int pri=-1)
 
Reference GetPublisher ()
 Return reference on publisher. More...
 
bool IsWorkerActive () const
 Method indicates if worker is running in the thread and accepts normal events. More...
 
virtual void ObjectCleanup ()
 Central cleanup method for worker. More...
 
virtual void ObjectDestroyed (Object *)
 Method to clear object reference, will be called from thread context (when possible) More...
 
virtual int PreviewCommand (Command cmd)
 This method called before command will be executed. More...
 
virtual void ProcessParameterEvent (const ParameterEvent &evnt)
 Interface method to retrieve subscribed parameter events. More...
 
virtual bool Publish (const Hierarchy &h, const std::string &path)
 
virtual bool PublishPars (const std::string &path)
 
bool RegisterForParameterEvent (const std::string &mask, bool onlychangeevent=true)
 Subscribe to parameter events from local or remote node. More...
 
void SetParValue (const std::string &name, const RecordField &v)
 Set parameter value and sync with worker hierarchy. More...
 
void SetWorkerCfgId (int id=-1)
 Set identifier which can be used in XML configuration ${}# formula It means that correspondent to the ID element of array will be extracted. More...
 
bool SingleLoop (double tmout)
 
virtual bool Subscribe (const std::string &path)
 
virtual bool Unpublish (const Hierarchy &h, const std::string &path)
 
bool UnregisterForParameterEvent (const std::string &mask)
 Unsubscribe to parameter events from local or remote node. More...
 
virtual bool Unsubscribe (const std::string &path)
 
 Worker (const ConstructorPair &pair)
 Special constructor, designed for inherited classes. More...
 
void WorkerSleep (double tmout)
 
- Protected Member Functions inherited from dabc::Object
virtual void _ChildsChanged ()
 Method called when new childs are add or old are removed. More...
 
virtual bool _DoDeleteItself ()
 This method is called at the moment when DecReference think that object can be destroyed and wants to return true. More...
 
bool _IsNormalState ()
 Same as IsNormalState() but without mutex lock - user should lock mutex himself. More...
 
virtual ObjectCreateInstance (const std::string &name)
 Method used to create new item to be placed as child of the object. More...
 
void DeleteThis ()
 Method should be used by the object to delete itself. More...
 
bool DestroyCalledFromOwnThread ()
 Internal DABC method, should be called by thread which was requested to destroy object. More...
 
void FillFullName (std::string &fullname, Object *upto, bool exclude_top_parent=false) const
 Method used to produce full item name,. More...
 
bool GetFlag (unsigned fl) const
 Return value of selected flag, not thread safe
More...
 
bool IsNormalState ()
 Return true if object is in normal state. More...
 
unsigned NumReferences ()
 Return number of references on the object. More...
 
 Object (const ConstructorPair &pair, unsigned flags=flIsOwner)
 
MutexObjectMutex () const
 Returns mutex, used for protection of Object data members. More...
 
void SetAutoDestroy (bool on=true)
 Set autodestroy flag for the object Once enabled, object will be destroyed when last reference will be cleared. More...
 
void SetFlag (unsigned fl, bool on=true)
 Change value of selected flag, not thread safe
More...
 
void SetName (const char *name)
 Changes object name. More...
 
void SetNameDirect (const char *name)
 Changes object name disregard of existing references. More...
 
void SetOwner (bool on=true)
 Specifies if object will be owner of its new childs. More...
 

Protected Attributes

std::string fClientNameSufix
 name suffix, which will be append to name seen on the server side More...
 
CommandsQueue fCmds
 commands to be submitted to the remote More...
 
bool fMasterConn
 
double fReconnectPeriod
 interval how often reconnect will be tried More...
 
char * fRecvBuf
 raw buffer for receiving command More...
 
unsigned fRecvBufSize
 currently allocated size of recv buffer More...
 
SocketCmdPacket fRecvHdr
 buffer for receiving header More...
 
ERecvState fRecvState
 state that happens with receiver (server) More...
 
std::string fRemoteHostName
 host name and port number More...
 
std::string fRemoteName
 name of connection, appeared in the browser More...
 
bool fRemoteObserver
 if true, channel automatically used to update information from remote More...
 
dabc::Buffer fSendBuf
 content of transported command More...
 
SocketCmdPacket fSendHdr
 header for send command More...
 
bool fSendingActive
 indicate if currently send active More...
 
CommandsQueue fSendQueue
 queue to keep commands which should be send More...
 
dabc::Buffer fSendRawData
 raw data, which should be send with command More...
 
EState fState
 current state of the worker More...
 
CommandsQueue fWaitQueue
 commands which should be replied from remote More...
 
- Protected Attributes inherited from dabc::Worker
WorkerAddonRef fAddon
 extension of worker for some special events More...
 
Reference fPublisher
 reference on publisher, once found, remain until end of object live More...
 
ThreadRef fThread
 reference on the thread, once assigned remain whole time More...
 
MutexfThreadMutex
 pointer on main thread mutex More...
 
bool fWorkerActive
 indicates if worker can submit events to the thread More...
 
int fWorkerCfgId
 special ID, can be used in XML configuration in ${}# formula More...
 
CommandsQueue fWorkerCommands
 all kinds of commands, processed by the worker More...
 
int fWorkerCommandsLevel
 Number of process commands recursion. More...
 
unsigned fWorkerFiredEvents
 indicate current balance between fired and processed events, used to correctly halt worker More...
 
Hierarchy fWorkerHierarchy
 place for publishing of worker parameters More...
 
uint32_t fWorkerId
 worker id in thread list, used for events submit More...
 
int fWorkerPriority
 priority of events, submitted by worker to the thread More...
 
- Protected Attributes inherited from dabc::Object
int fObjectBlock
 counter for blocking calls, as long as non-zero, non of child can be removed More...
 
ReferencesVectorfObjectChilds
 list of the child objects More...
 
unsigned fObjectFlags
 flag, protected by the mutex More...
 
MutexfObjectMutex
 mutex protects all private property of the object More...
 
std::string fObjectName
 object name More...
 
Reference fObjectParent
 reference on the parent object More...
 
int fObjectRefCnt
 accounts how many references existing on the object, thread safe More...
 

Friends

class SocketCommandChannel
 

Additional Inherited Members

- Public Types inherited from dabc::Worker
enum  EPriotiryLevels { priorityMaximum = 0 , priorityMinimum = -1 , priorityDefault = -7 , priorityMagic = -77 }
 
enum  EWorkerEventsCodes { evntFirstCore = 1 , evntFirstAddOn = 100 , evntFirstSystem = 200 , evntFirstUser = 1000 }
 
- Static Public Member Functions inherited from dabc::Worker
static int cmd_bool (bool v)
 
- Static Public Member Functions inherited from dabc::Object
static void Destroy (Object *obj) throw ()
 User method for object destroyment. More...
 
static void InspectGarbageCollector ()
 \ brief Methods to inspect how many objects pointers are remained More...
 
static bool NameMatch (const std::string &name, const std::string &mask)
 Check if name matches to specified mask. More...
 
static bool NameMatchM (const std::string &name, const std::string &mask)
 Check if name matches to specified mask. More...
 
static unsigned NumInstances ()
 Static variable counts total number of objects instances. More...
 
- Static Protected Member Functions inherited from dabc::Object
static ConstructorPair MakePair (const std::string &fullname, bool withmanager=true)
 Internal DABC method, used to produce pair - object parent and object name, which is typically should be used as argument in class constructor. More...
 
static ConstructorPair MakePair (Object *prnt, const std::string &fullname, bool withmanager=true)
 Internal DABC method, used to produce pair - object parent and object name, which is typically should be used as argument in class constructor. More...
 
static ConstructorPair MakePair (Reference prnt, const std::string &fullname, bool withmanager=true)
 Internal DABC method, used to produce pair - object parent and object name, which is typically should be used as argument in class constructor. More...
 

Detailed Description

Client side of command connection between two nodes.

Definition at line 57 of file SocketCommandChannel.h.

Member Enumeration Documentation

◆ EEVent

Enumerator
evntActivate 

Definition at line 62 of file SocketCommandChannel.h.

◆ anonymous enum

anonymous enum
protected
Enumerator
headerDabc 

Definition at line 66 of file SocketCommandChannel.h.

◆ ECmdDataKindNew

Enumerator
kindCommand 

command (client -> server)

kindReply 

reply (server -> client)

kindCancel 

cancel cmd execution (server -> client)

kindDisconnect 

close of connection (client -> server)

Definition at line 70 of file SocketCommandChannel.h.

◆ EState

Enumerator
stConnecting 

initial state, worker waits until channel is connected

stWorking 

normal state when execution of different commands are done

stClosing 

socket connection going normally down

stFailure 

failure is detected and connection will be close

Definition at line 78 of file SocketCommandChannel.h.

◆ ERecvState

Enumerator
recvInit 
recvHeader 
recvDevConnect 
recvData 

Definition at line 85 of file SocketCommandChannel.h.

Constructor & Destructor Documentation

◆ SocketCommandClient()

dabc::SocketCommandClient::SocketCommandClient ( Reference  parent,
const std::string &  name,
SocketAddon addon,
const std::string &  hostname = "",
double  reconnect = 0. 
)

Definition at line 27 of file SocketCommandChannel.cxx.

◆ ~SocketCommandClient()

dabc::SocketCommandClient::~SocketCommandClient ( )
virtual

Definition at line 65 of file SocketCommandChannel.cxx.

Member Function Documentation

◆ OnThreadAssigned()

void dabc::SocketCommandClient::OnThreadAssigned ( )
protectedvirtual

Reimplemented from dabc::Worker.

Definition at line 70 of file SocketCommandChannel.cxx.

◆ ExecuteCommand()

int dabc::SocketCommandClient::ExecuteCommand ( Command  cmd)
protectedvirtual

Main method where commands are executed.

Reimplemented from dabc::Worker.

Definition at line 130 of file SocketCommandChannel.cxx.

◆ ReplyCommand()

bool dabc::SocketCommandClient::ReplyCommand ( Command  cmd)
protectedvirtual

Reimplement this method to react on command reply Return true if command can be destroyed by framework.

Reimplemented from dabc::Worker.

Definition at line 297 of file SocketCommandChannel.cxx.

◆ ProcessEvent()

void dabc::SocketCommandClient::ProcessEvent ( const EventId evnt)
protectedvirtual

Reimplemented from dabc::Worker.

Definition at line 311 of file SocketCommandChannel.cxx.

◆ ProcessTimeout()

double dabc::SocketCommandClient::ProcessTimeout ( double  last_diff)
protectedvirtual

Reimplemented from dabc::Worker.

Definition at line 496 of file SocketCommandChannel.cxx.

◆ EnsureRecvBuffer()

bool dabc::SocketCommandClient::EnsureRecvBuffer ( unsigned  strsize)
protected

Definition at line 81 of file SocketCommandChannel.cxx.

◆ ProcessRecvPacket()

void dabc::SocketCommandClient::ProcessRecvPacket ( )
protected

Method called, when complete packet (header + raw data) is received.

Definition at line 210 of file SocketCommandChannel.cxx.

◆ AddCommand()

void dabc::SocketCommandClient::AddCommand ( dabc::Command  cmd,
bool  asreply = false 
)
protected

Submit command to send queue, if queue is empty start sending immediately.

Definition at line 416 of file SocketCommandChannel.cxx.

◆ SendSubmittedCommands()

void dabc::SocketCommandClient::SendSubmittedCommands ( )
protected

Send submitted commands to remote.

Definition at line 424 of file SocketCommandChannel.cxx.

◆ SendCommand()

void dabc::SocketCommandClient::SendCommand ( dabc::Command  cmd,
bool  asreply = false 
)
protected

Send next command to the remote.

Definition at line 432 of file SocketCommandChannel.cxx.

◆ CloseClient()

void dabc::SocketCommandClient::CloseClient ( bool  iserr = false,
const char *  msg = 0 
)
protected

Called when connection must be closed due to the error.

Definition at line 109 of file SocketCommandChannel.cxx.

◆ ExtraClientTimeout()

double dabc::SocketCommandClient::ExtraClientTimeout ( ) const
inlineprotected

Definition at line 148 of file SocketCommandChannel.h.

◆ ExtraServerTimeout()

double dabc::SocketCommandClient::ExtraServerTimeout ( ) const
inlineprotected

Definition at line 149 of file SocketCommandChannel.h.

◆ ExecuteCommandByItself()

bool dabc::SocketCommandClient::ExecuteCommandByItself ( Command  cmd)
protected

Definition at line 184 of file SocketCommandChannel.cxx.

Friends And Related Function Documentation

◆ SocketCommandChannel

friend class SocketCommandChannel
friend

Definition at line 60 of file SocketCommandChannel.h.

Field Documentation

◆ fRemoteHostName

std::string dabc::SocketCommandClient::fRemoteHostName
protected

host name and port number

Definition at line 92 of file SocketCommandChannel.h.

◆ fReconnectPeriod

double dabc::SocketCommandClient::fReconnectPeriod
protected

interval how often reconnect will be tried

Definition at line 93 of file SocketCommandChannel.h.

◆ fCmds

CommandsQueue dabc::SocketCommandClient::fCmds
protected

commands to be submitted to the remote

Definition at line 95 of file SocketCommandChannel.h.

◆ fState

EState dabc::SocketCommandClient::fState
protected

current state of the worker

Definition at line 97 of file SocketCommandChannel.h.

◆ fSendHdr

SocketCmdPacket dabc::SocketCommandClient::fSendHdr
protected

header for send command

Definition at line 99 of file SocketCommandChannel.h.

◆ fSendBuf

dabc::Buffer dabc::SocketCommandClient::fSendBuf
protected

content of transported command

Definition at line 100 of file SocketCommandChannel.h.

◆ fSendRawData

dabc::Buffer dabc::SocketCommandClient::fSendRawData
protected

raw data, which should be send with command

Definition at line 101 of file SocketCommandChannel.h.

◆ fSendingActive

bool dabc::SocketCommandClient::fSendingActive
protected

indicate if currently send active

Definition at line 102 of file SocketCommandChannel.h.

◆ fRecvHdr

SocketCmdPacket dabc::SocketCommandClient::fRecvHdr
protected

buffer for receiving header

Definition at line 103 of file SocketCommandChannel.h.

◆ fRecvBuf

char* dabc::SocketCommandClient::fRecvBuf
protected

raw buffer for receiving command

Definition at line 104 of file SocketCommandChannel.h.

◆ fRecvBufSize

unsigned dabc::SocketCommandClient::fRecvBufSize
protected

currently allocated size of recv buffer

Definition at line 105 of file SocketCommandChannel.h.

◆ fSendQueue

CommandsQueue dabc::SocketCommandClient::fSendQueue
protected

queue to keep commands which should be send

Definition at line 107 of file SocketCommandChannel.h.

◆ fWaitQueue

CommandsQueue dabc::SocketCommandClient::fWaitQueue
protected

commands which should be replied from remote

Definition at line 108 of file SocketCommandChannel.h.

◆ fRecvState

ERecvState dabc::SocketCommandClient::fRecvState
protected

state that happens with receiver (server)

Definition at line 110 of file SocketCommandChannel.h.

◆ fRemoteObserver

bool dabc::SocketCommandClient::fRemoteObserver
protected

if true, channel automatically used to update information from remote

Definition at line 113 of file SocketCommandChannel.h.

◆ fRemoteName

std::string dabc::SocketCommandClient::fRemoteName
protected

name of connection, appeared in the browser

Definition at line 114 of file SocketCommandChannel.h.

◆ fMasterConn

bool dabc::SocketCommandClient::fMasterConn
protected

Definition at line 118 of file SocketCommandChannel.h.

◆ fClientNameSufix

std::string dabc::SocketCommandClient::fClientNameSufix
protected

name suffix, which will be append to name seen on the server side

Definition at line 119 of file SocketCommandChannel.h.


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