mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-20 04:14:27 -04:00
merged upstream/master
This commit is contained in:
commit
c07dd83ba9
3 changed files with 25 additions and 3 deletions
|
@ -26,7 +26,15 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/socket.h>
|
/* get OS-specific definitions for:
|
||||||
|
* struct sockaddr_storage
|
||||||
|
*/
|
||||||
|
#ifndef WINDOWS_SYS
|
||||||
|
#include <sys/socket.h>
|
||||||
|
#else
|
||||||
|
#include <winsock2.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "retroshare/rspeers.h"
|
#include "retroshare/rspeers.h"
|
||||||
|
|
||||||
class p3LinkMgr;
|
class p3LinkMgr;
|
||||||
|
|
|
@ -26,7 +26,14 @@
|
||||||
#include "ui_ServerPage.h"
|
#include "ui_ServerPage.h"
|
||||||
#include "RsAutoUpdatePage.h"
|
#include "RsAutoUpdatePage.h"
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <sys/socket.h>
|
/* get OS-specific definitions for:
|
||||||
|
* struct sockaddr_storage
|
||||||
|
*/
|
||||||
|
#ifndef WINDOWS_SYS
|
||||||
|
#include <sys/socket.h>
|
||||||
|
#else
|
||||||
|
#include <winsock2.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
class QNetworkReply;
|
class QNetworkReply;
|
||||||
class QNetworkAccessManager;
|
class QNetworkAccessManager;
|
||||||
|
|
|
@ -24,7 +24,14 @@
|
||||||
|
|
||||||
#include <QString>
|
#include <QString>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <sys/socket.h>
|
/* get OS-specific definitions for:
|
||||||
|
* struct sockaddr_storage
|
||||||
|
*/
|
||||||
|
#ifndef WINDOWS_SYS
|
||||||
|
#include <sys/socket.h>
|
||||||
|
#else
|
||||||
|
#include <winsock2.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
class RsNetUtil
|
class RsNetUtil
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue