Giter Site home page Giter Site logo

ccpomelo's People

Contributors

xdxttt avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

ccpomelo's Issues

关于connect函数实现的一些疑问

CCPomelo构造函数中,上来就对client进行初始化了:
client = pc_client_new();

然后connect函数实现部分:
if (client) {
client = pc_client_new();//为何重复new?
}else{
pc_client_stop(client);//进到这里表示client是NULL,为何还需要stop和destroy?
pc_client_destroy(client);
client = pc_client_new();
}

求作者解惑。

我曾试图修改成如下,但连接chatofpomelo服务端有问题,原因是连接gate成功后调用stop,再connect到connector不成功。作者的实现就能成功,是不是因为pc_client_destroy是异步导致的?

构造函数中client = NULL;

connect函数中:
if(client)
{
pc_client_stop(client);
pc_client_destroy(client);
}
client = pc_client_new();
int ret = pc_client_connect(client, &address);
if(ret) {
CCLOG("pc_client_connect error:%d",errno);
pc_client_destroy(client);
client = NULL;
}
return ret;

stop函数:
void CCPomelo::stop(){
pc_client_stop(client);
pc_client_destroy(client);
client = NULL;
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.