aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ptunnel.c9
-rw-r--r--src/ptunnel.h7
2 files changed, 13 insertions, 3 deletions
diff --git a/src/ptunnel.c b/src/ptunnel.c
index 5feb34a..0a4ab38 100644
--- a/src/ptunnel.c
+++ b/src/ptunnel.c
@@ -375,7 +375,7 @@ void pt_forwarder(void) {
#ifndef WIN32
if (pthread_create(&pid, 0, pt_proxy, 0) != 0)
#else
- if (0 == (pid = _beginthreadex(0, 0, (unsigned int (__stdcall *)(void *))pt_proxy, 0, 0, 0)))
+ if (0 == (pid = _beginthreadex(0, 0, pt_proxy, 0, 0, 0)))
#endif
{
pt_log(kLog_error, "Couldn't create thread! Dropping incoming connection.\n");
@@ -427,7 +427,12 @@ int pt_create_udp_socket(int port) {
/* pt_proxy: This function does all the client and proxy stuff.
*/
-void* pt_proxy(void *args) {
+#ifndef WIN32
+void * pt_proxy(void *args)
+#else
+unsigned int __stdcall pt_proxy(void *args)
+#endif
+{
(void) args;
fd_set set;
diff --git a/src/ptunnel.h b/src/ptunnel.h
index 2fda8bc..6419eae 100644
--- a/src/ptunnel.h
+++ b/src/ptunnel.h
@@ -142,7 +142,12 @@ typedef struct {
#endif
/* function Prototypes */
-void* pt_proxy(void *args);
+#ifndef WIN32
+void * pt_proxy(void *args);
+#else
+unsigned int __stdcall pt_proxy(void *args);
+#endif
+
#ifdef HAVE_PCAP
void pcap_packet_handler(u_char *refcon, const struct pcap_pkthdr *hdr,
const u_char* pkt);