but when I debug the program, it cannot find connect.
When I search for CXX0017 tips, none of them applies.
I am trying to create some socket communication between my C++ and Java
program.
I include WinSock.h and in my project properties in Configuration Properties
Linker > Input I say:
Additional Dependencies: WSock32.Lib.
However when I try to connect the socket saying:
if ((new_fd = connect(sockfd, (struct sockaddr *)&their_addr, sin_size)) ==
-1)
{
perror("accept");
}
I end up at perror,
and when I watch:
connect(sockfd, (struct sockaddr *)&their_addr, sin_size),
it says:
CXX0017 Error:symbol "connect " not found,
although if I right click at connect and Go To Definition, it does end up at:
int PASCAL FAR connect (int PASCAL FAR connect (
IN SOCKET s,
IN const struct sockaddr FAR *name,
IN int namelen);
inside WinSock.h.
How can I resolve this?
Thanks for your time looking at this!