1

私はソフトフォンアプリケーションを作成するためにOpalVoipを使用していますが、次のことに行き詰まりました。

void MyManager::main()
{
    //variables
    PNotifier notify; // this is the problem
    //it is the template PNotifierFunctionTemplate<INT>

    //more stuff 

    listener->Open(notify); 

    //listener is of type OpalListenerUDP
    //it should start the listener and wait for incoming connection
    //but however i need to pass this NOTIFY which should be the INT parameter to the
    //new OpalTransport instance created by the listener...
    //however OpalListenerUDP only creates OpalTransport after the connection is
    //accepted as so in following: OpalListenerUDP::Accept(/*time interval*/)
    //
    //So far I think that this notifier should be a pointer to an object of type
    //OpalListenerUDP but i have no idea how to get it done 
}

助けていただければ幸いです、レッド。

4

1 に答える 1

0

オパールのソースコードを詳しく調べた結果、解決策が見つかりました。結局のところ

OpalConnection::StartListener(OpalListener&);

リスナーを開くジョブを実行するため、OpalListener :: Open()を呼び出す必要はありません。したがって、接続を受け入れるためにOpalListener::Acceptを呼び出すだけで済みます。

于 2012-09-16T09:52:54.523 に答える