예제 #1
0
CSMBFile::CSMBFile()
{
  smb.Init();
  m_fd = -1;
  smb.AddActiveConnection();
  m_allowRetry = true;
}
예제 #2
0
파일: FileSmb.cpp 프로젝트: Bobbin007/xbmc
CFileSMB::CFileSMB()
{
  smb.Init();
  m_fd = -1;
#ifdef _LINUX
  smb.AddActiveConnection();
#endif
}
예제 #3
0
파일: SmbFile.cpp 프로젝트: A600/xbmc
CSmbFile::CSmbFile()
{
  smb.Init();
  m_fd = -1;
#ifdef TARGET_POSIX
  smb.AddActiveConnection();
#endif
}
예제 #4
0
파일: SMBFile.cpp 프로젝트: 7orlum/xbmc
CSMBFile::CSMBFile()
{
  smb.Init();
  m_fd = -1;
  smb.AddActiveConnection();
}