本文整理汇总了C++中BaseProtocol::SetFarProtocol方法的典型用法代码示例。如果您正苦于以下问题:C++ BaseProtocol::SetFarProtocol方法的具体用法?C++ BaseProtocol::SetFarProtocol怎么用?C++ BaseProtocol::SetFarProtocol使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BaseProtocol
的用法示例。
在下文中一共展示了BaseProtocol::SetFarProtocol方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: BindSSL
bool InboundRTMPSDiscriminatorProtocol::BindSSL(IOBuffer &buffer) {
//1. Create the RTMP protocol
BaseProtocol *pRTMP = new InboundRTMPProtocol();
if (!pRTMP->Initialize(GetCustomParameters())) {
FATAL("Unable to create RTMP protocol");
pRTMP->EnqueueForDelete();
return false;
}
//2. Destroy the link
BaseProtocol *pFar = _pFarProtocol;
pFar->ResetNearProtocol();
ResetFarProtocol();
//3. Create the new links
pFar->SetNearProtocol(pRTMP);
pRTMP->SetFarProtocol(pFar);
//4. Set the application
pRTMP->SetApplication(GetApplication());
//5. Enqueue for delete this protocol
EnqueueForDelete();
//6. Process the data
if (!pRTMP->SignalInputData(buffer)) {
FATAL("Unable to process data");
pRTMP->EnqueueForDelete();
}
return true;
}
示例2: STR
BaseProtocol *InboundHTTP4RTMP::Bind(string sid) {
BaseProtocol *pResult = NULL;
if (_pNearProtocol == NULL) {
//14. This might be a new connection. Do we have that sid generated?
if (!MAP_HAS1(_generatedSids, sid)) {
FATAL("Invalid sid: %s", STR(sid));
return false;
}
//15. See if we have to generate a new connection or we just pick up
//a disconnected one
if (MAP_HAS1(_protocolsBySid, sid)) {
pResult = ProtocolManager::GetProtocol(_protocolsBySid[sid]);
} else {
pResult = new InboundRTMPProtocol();
pResult->Initialize(GetCustomParameters());
pResult->SetApplication(GetApplication());
_protocolsBySid[sid] = pResult->GetId();
SetNearProtocol(pResult);
pResult->SetFarProtocol(this);
}
} else {
pResult = _pNearProtocol;
}
return pResult;
}
示例3: RegisterProtocol
void HTTPBuffAppProtocolHandler::RegisterProtocol(BaseProtocol *pProtocol) {
//1. Get the TS protocol ID from the parameters
uint32_t tsId = pProtocol->GetCustomParameters()["payload"]["tsId"];
//2. Get the TS protocol
BaseProtocol *pTSProtocol = ProtocolManager::GetProtocol(tsId);
if (pTSProtocol == NULL) {
FATAL("Unable to get TS protocol by id: %u", tsId);
pProtocol->EnqueueForDelete();
return;
}
//3. Link them
pProtocol->SetNearProtocol(pTSProtocol);
pTSProtocol->SetFarProtocol(pProtocol);
//4. make sure that upper protocols survive AES protocol death
pProtocol->DeleteNearProtocol(false);
//5. Do the HTTP request
if (!((GenericProtocol *) pProtocol)->DoHTTPRequest()) {
FATAL("Unable to do HTTP request");
pProtocol->EnqueueForDelete();
return;
}
}