예제 #1
0
파일: server_conn.cpp 프로젝트: ACEZLY/gim
int SvCon::sendToClient(const std::string& cid, const ServiceResponse& resp){

	Dispatcher* d = getDispatcher(); 

	if(!d){
		return INNER_ERROR;
	}

	int ret = d->sendToClient(cid, resp);

	return ret;
}