1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-14 03:39:09 +00:00
hashcat/include/dispatch.h
Rosen Penev c6b49de852 include winsock2 instead of 1
2 is included elsewhere. No need to also include 1.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2023-08-09 17:44:21 -07:00

29 lines
504 B
C

/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
#ifndef HC_DISPATCH_H
#define HC_DISPATCH_H
#ifdef WITH_BRAIN
#if defined (_WIN)
#include <winsock2.h>
#define SEND_FLAGS 0
#endif
#if defined (__linux__)
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <arpa/inet.h>
#define SEND_FLAGS MSG_NOSIGNAL
#endif
#endif
HC_API_CALL void *thread_calc_stdin (void *p);
HC_API_CALL void *thread_calc (void *p);
#endif // HC_DISPATCH_H