mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-04-04 13:06:07 -04:00
Fixed compile of libretroshare on Windows.
Cleaned some includes of openssl. git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.6-initdev@6769 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
34ea22d5f6
commit
72c7569619
@ -26,11 +26,6 @@
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
#include <openssl/err.h>
|
||||
#include <openssl/ssl.h>
|
||||
#include <openssl/evp.h>
|
||||
#include <openssl/rsa.h>
|
||||
|
||||
#include "pqi/pqihash.h"
|
||||
#include "rsgenexchange.h"
|
||||
#include "gxssecurity.h"
|
||||
|
@ -39,14 +39,7 @@
|
||||
#ifndef RS_GPG_AUTH_HEADER
|
||||
#define RS_GPG_AUTH_HEADER
|
||||
|
||||
#include <openssl/ssl.h>
|
||||
#include <openssl/evp.h>
|
||||
#include "util/rsthreads.h"
|
||||
//#include "retroshare/rspeers.h"
|
||||
#include <string>
|
||||
#include <list>
|
||||
#include <set>
|
||||
#include <map>
|
||||
#include "pqi/p3cfgmgr.h"
|
||||
#include "pgp/pgphandler.h"
|
||||
|
||||
|
@ -46,11 +46,8 @@
|
||||
/******************** notify of new Cert **************************/
|
||||
#include "pqinotify.h"
|
||||
|
||||
#include <openssl/err.h>
|
||||
//#include <openssl/evp.h>
|
||||
//#include <openssl/pem.h>
|
||||
#include <openssl/rand.h>
|
||||
#include <openssl/x509.h>
|
||||
#include <openssl/ssl.h>
|
||||
|
||||
#include <iomanip>
|
||||
|
||||
|
@ -39,8 +39,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <openssl/ssl.h>
|
||||
#include <openssl/evp.h>
|
||||
#include <openssl/x509.h>
|
||||
|
||||
#include <string>
|
||||
#include <map>
|
||||
|
@ -29,6 +29,7 @@
|
||||
#include <openssl/sha.h>
|
||||
#include <string>
|
||||
#include <iomanip>
|
||||
#include <string.h>
|
||||
#include "util/rsstring.h"
|
||||
#include <inttypes.h>
|
||||
|
||||
|
@ -45,13 +45,8 @@
|
||||
|
||||
#else
|
||||
|
||||
|
||||
#include "util/rsnet.h" /* more generic networking header */
|
||||
|
||||
#include <winsock2.h>
|
||||
typedef int socklen_t;
|
||||
//typedef unsigned long in_addr_t;
|
||||
|
||||
// Some Network functions that are missing from windows.
|
||||
|
||||
in_addr_t inet_netof(struct in_addr addr);
|
||||
|
@ -1859,3 +1859,17 @@ std::string pqissl::gethash()
|
||||
/********** End of Implementation of BinInterface ******************/
|
||||
|
||||
|
||||
int pqissl::net_internal_close(int fd)
|
||||
{
|
||||
return unix_close(fd);
|
||||
}
|
||||
|
||||
int pqissl::net_internal_SSL_set_fd(SSL *ssl, int fd)
|
||||
{
|
||||
return SSL_set_fd(ssl, fd);
|
||||
}
|
||||
|
||||
int pqissl::net_internal_fcntl_nonblock(int fd)
|
||||
{
|
||||
return unix_fcntl_nonblock(fd);
|
||||
}
|
||||
|
@ -28,8 +28,6 @@
|
||||
#ifndef MRK_PQI_SSL_HEADER
|
||||
#define MRK_PQI_SSL_HEADER
|
||||
|
||||
#include <openssl/ssl.h>
|
||||
|
||||
// operating system specific network header.
|
||||
#include "pqi/pqinetwork.h"
|
||||
|
||||
@ -159,9 +157,9 @@ void getCryptoParams(RsPeerCryptoParams& params) ;
|
||||
protected:
|
||||
|
||||
//protected internal fns that are overloaded for udp case.
|
||||
virtual int net_internal_close(int fd) { return unix_close(fd); }
|
||||
virtual int net_internal_SSL_set_fd(SSL *ssl, int fd) { return SSL_set_fd(ssl, fd); }
|
||||
virtual int net_internal_fcntl_nonblock(int fd) { return unix_fcntl_nonblock(fd);}
|
||||
virtual int net_internal_close(int fd);
|
||||
virtual int net_internal_SSL_set_fd(SSL *ssl, int fd);
|
||||
virtual int net_internal_fcntl_nonblock(int fd);
|
||||
|
||||
|
||||
/* data */
|
||||
|
@ -168,7 +168,7 @@ int pqisslproxy::Proxy_Send_Method()
|
||||
#endif
|
||||
|
||||
/* send hello to proxy server */
|
||||
uint8_t method_hello_data[3] = { 0x05, 0x01, 0x00 }; // [ Ver | nMethods (1) | No Auth Method ]
|
||||
char method_hello_data[3] = { 0x05, 0x01, 0x00 }; // [ Ver | nMethods (1) | No Auth Method ]
|
||||
|
||||
int sent = send(sockfd, method_hello_data, 3, 0);
|
||||
if (sent != 3)
|
||||
@ -201,7 +201,7 @@ int pqisslproxy::Proxy_Method_Response()
|
||||
|
||||
/* get response from proxy server */
|
||||
|
||||
uint8_t method_response[2];
|
||||
char method_response[2];
|
||||
|
||||
// read from the socket.
|
||||
int recvd = recv(sockfd, method_response, 2, MSG_WAITALL);
|
||||
@ -276,7 +276,7 @@ int pqisslproxy::Proxy_Send_Address()
|
||||
return ret; // Method Response not complete.
|
||||
}
|
||||
|
||||
uint8_t socks_request[MAX_SOCKS_REQUEST_LEN] =
|
||||
char socks_request[MAX_SOCKS_REQUEST_LEN] =
|
||||
{ 0x05, // SOCKS VERSION.
|
||||
0x01, // CONNECT (Tor doesn't support BIND or UDP).
|
||||
0x00, // RESERVED.
|
||||
@ -332,7 +332,7 @@ int pqisslproxy::Proxy_Connection_Complete()
|
||||
/* get response from proxy server */
|
||||
/* response is similar format to request - with variable length data */
|
||||
|
||||
uint8_t socks_response[MAX_SOCKS_REQUEST_LEN];
|
||||
char socks_response[MAX_SOCKS_REQUEST_LEN];
|
||||
|
||||
int recvd = recv(sockfd, socks_response, 5, MSG_WAITALL);
|
||||
if (recvd != 5)
|
||||
|
@ -28,8 +28,6 @@
|
||||
#ifndef MRK_PQI_SSL_PROXY_HEADER
|
||||
#define MRK_PQI_SSL_PROXY_HEADER
|
||||
|
||||
#include <openssl/ssl.h>
|
||||
|
||||
// operating system specific network header.
|
||||
#include "pqi/pqinetwork.h"
|
||||
|
||||
|
@ -30,7 +30,7 @@
|
||||
#include "tcponudp/bio_tou.h"
|
||||
|
||||
#include <errno.h>
|
||||
#include <openssl/err.h>
|
||||
#include <openssl/ssl.h>
|
||||
|
||||
|
||||
#include "util/rsdebug.h"
|
||||
|
@ -28,8 +28,6 @@
|
||||
#ifndef MRK_PQI_SSL_UDP_HEADER
|
||||
#define MRK_PQI_SSL_UDP_HEADER
|
||||
|
||||
#include <openssl/ssl.h>
|
||||
|
||||
// operating system specific network header.
|
||||
#include "pqi/pqinetwork.h"
|
||||
|
||||
|
@ -35,7 +35,6 @@
|
||||
|
||||
#include <openssl/evp.h>
|
||||
#include <openssl/x509.h>
|
||||
#include <openssl/ssl.h>
|
||||
|
||||
#include <inttypes.h>
|
||||
#include <string>
|
||||
|
@ -60,6 +60,8 @@
|
||||
// for blocking signals
|
||||
#include <signal.h>
|
||||
|
||||
#include <openssl/ssl.h>
|
||||
|
||||
#include "pqi/authssl.h"
|
||||
#include "pqi/sslfns.h"
|
||||
#include "pqi/authgpg.h"
|
||||
|
@ -44,15 +44,14 @@
|
||||
|
||||
#else
|
||||
|
||||
|
||||
#include <winsock2.h>
|
||||
|
||||
#include <stdio.h> /* for ssize_t */
|
||||
//typedef uint32_t socklen_t;
|
||||
#include <ws2tcpip.h>
|
||||
typedef uint32_t in_addr_t;
|
||||
|
||||
int inet_aton(const char *name, struct in_addr *addr);
|
||||
|
||||
// Missing defines in MinGW
|
||||
#define MSG_WAITALL 8
|
||||
|
||||
#endif
|
||||
/********************************** WINDOWS/UNIX SPECIFIC PART ******************/
|
||||
|
||||
|
@ -27,6 +27,7 @@
|
||||
#include <QMessageBox>
|
||||
#include <QIcon>
|
||||
#include <QObject>
|
||||
#include <time.h>
|
||||
|
||||
#include "RetroShareLink.h"
|
||||
#include "MainWindow.h"
|
||||
|
Loading…
x
Reference in New Issue
Block a user