vdr
2.6.1
|
Go to the source code of this file.
Enumerations | |
enum | eSvdrpPeerModes { spmOff = 0 , spmAny = 1 , spmOnly = 2 } |
Functions | |
void | SetSVDRPPorts (int TcpPort, int UdpPort) |
void | SetSVDRPGrabImageDir (const char *GrabImageDir) |
void | StartSVDRPHandler (void) |
void | StopSVDRPHandler (void) |
bool | GetSVDRPServerNames (cStringList *ServerNames) |
bool | ExecSVDRPCommand (const char *ServerName, const char *Command, cStringList *Response=NULL) |
void | BroadcastSVDRPCommand (const char *Command) |
int | SVDRPCode (const char *s) |
const char * | SVDRPValue (const char *s) |
Variables | |
cStateKey | StateKeySVDRPRemoteTimersPoll |
enum eSvdrpPeerModes |
void BroadcastSVDRPCommand | ( | const char * | Command | ) |
Sends the given SVDRP Command string to all remote VDRs.
Definition at line 2875 of file svdrp.c.
References ExecSVDRPCommand(), cSVDRPClientHandler::GetServerNames(), cSVDRPClientHandler::Lock(), cVector< T >::Size(), SVDRPClientHandler, SVDRPHandlerMutex, and cSVDRPClientHandler::Unlock().
bool ExecSVDRPCommand | ( | const char * | ServerName, |
const char * | Command, | ||
cStringList * | Response = NULL |
||
) |
Sends the given SVDRP Command string to the remote VDR identified by ServerName and collects all of the response strings in Response.
If no Response parameter is given, the response from command execution is ignored. Returns true if the data exchange was successful. Whether or not the actual SVDRP command was successful depends on the resulting strings from the remote VDR, which can be accessed through Response. If Response is given, it will be cleared before the command is actually executed.
Definition at line 2863 of file svdrp.c.
References cSVDRPClientHandler::Execute(), cSVDRPClientHandler::Lock(), SVDRPClientHandler, SVDRPHandlerMutex, and cSVDRPClientHandler::Unlock().
Referenced by BroadcastSVDRPCommand(), HandleRemoteTimerModifications(), and cMenuTimers::OnOff().
bool GetSVDRPServerNames | ( | cStringList * | ServerNames | ) |
Gets a list of all available VDRs this VDR is connected to via SVDRP, and stores it in the given ServerNames list.
The list is cleared before getting the server names. Returns true if the resulting list is not empty.
Definition at line 2851 of file svdrp.c.
References cSVDRPClientHandler::GetServerNames(), cSVDRPClientHandler::Lock(), SVDRPClientHandler, SVDRPHandlerMutex, and cSVDRPClientHandler::Unlock().
Referenced by cMenuEditTimer::cMenuEditTimer(), and cMenuSetupMisc::Set().
void SetSVDRPGrabImageDir | ( | const char * | GrabImageDir | ) |
void SetSVDRPPorts | ( | int | TcpPort, |
int | UdpPort | ||
) |
Definition at line 2738 of file svdrp.c.
References SVDRPTcpPort, and SVDRPUdpPort.
Referenced by main().
void StartSVDRPHandler | ( | void | ) |
Definition at line 2826 of file svdrp.c.
References Setup, cThread::Start(), SVDRPClientHandler, SVDRPHandlerMutex, cSetup::SVDRPPeering, SVDRPServerHandler, SVDRPTcpPort, SVDRPUdpPort, and cSVDRPServerHandler::WaitUntilReady().
Referenced by main(), and cMenuSetupMisc::ProcessKey().
void StopSVDRPHandler | ( | void | ) |
Definition at line 2842 of file svdrp.c.
References SVDRPClientHandler, SVDRPHandlerMutex, and SVDRPServerHandler.
Referenced by main(), and cMenuSetupMisc::ProcessKey().
|
inline |
Returns the value of the three digit reply code of the given SVDRP response string.
Definition at line 47 of file svdrp.h.
Referenced by cSVDRPClient::GetRemoteTimers(), HandleRemoteTimerModifications(), and cMenuTimers::OnOff().
|
inline |
Returns the actual value of the given SVDRP response string, skipping the three digit reply code and possible continuation line indicator.
Definition at line 50 of file svdrp.h.
Referenced by HandleRemoteTimerModifications().
|
extern |
Controls whether a change to the local list of timers needs to result in sending a POLL to the remote clients.
Referenced by cMenuTimers::Delete(), main(), cMenuTimers::OnOff(), cMenuEditTimer::ProcessKey(), cMenuWhatsOn::Record(), cMenuSchedule::Record(), and TimerStillRecording().