コード例 #1
0
ファイル: msocketdevice_win.cpp プロジェクト: Openivo/mythtv
QHostAddress MSocketDevice::peerAddress() const
{
    if ( pp==0 && isValid() ) {
	MSocketDevice *that = (MSocketDevice*)this; // mutable
	that->fetchPeerConnectionParameters();
    }
    return pa;
}
コード例 #2
0
ファイル: msocketdevice_win.cpp プロジェクト: Openivo/mythtv
quint16 MSocketDevice::peerPort() const
{
    if ( pp==0 && isValid() ) {
	MSocketDevice *that = (MSocketDevice*)this; // mutable
	that->fetchPeerConnectionParameters();
    }
    return pp;
}