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:
thunder2 2013-09-26 23:53:06 +00:00
parent 34ea22d5f6
commit 72c7569619
16 changed files with 32 additions and 42 deletions

View File

@ -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"

View File

@ -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"

View File

@ -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>

View File

@ -39,8 +39,8 @@
*
*/
#include <openssl/ssl.h>
#include <openssl/evp.h>
#include <openssl/x509.h>
#include <string>
#include <map>

View File

@ -29,6 +29,7 @@
#include <openssl/sha.h>
#include <string>
#include <iomanip>
#include <string.h>
#include "util/rsstring.h"
#include <inttypes.h>

View File

@ -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);

View File

@ -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);
}

View File

@ -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 */

View File

@ -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)

View File

@ -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"

View File

@ -30,7 +30,7 @@
#include "tcponudp/bio_tou.h"
#include <errno.h>
#include <openssl/err.h>
#include <openssl/ssl.h>
#include "util/rsdebug.h"

View File

@ -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"

View File

@ -35,7 +35,6 @@
#include <openssl/evp.h>
#include <openssl/x509.h>
#include <openssl/ssl.h>
#include <inttypes.h>
#include <string>

View File

@ -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"

View File

@ -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 ******************/

View File

@ -27,6 +27,7 @@
#include <QMessageBox>
#include <QIcon>
#include <QObject>
#include <time.h>
#include "RetroShareLink.h"
#include "MainWindow.h"