我正试图在windows上的codelite中编写一个简单的套接字代码,但我无法导入ws2_32.h,因此我的项目不工作,我正在获得"没有这样的文件或目录"。我怎样才能解决这个问题?我试着在链接器选项中写这个,但我不能成功。我研究了这样的问题,但我不明白。这是Codelite的新版本,与其他版本不同。我使用MinGW作为编译器。
编辑:我删除了一个不必要和错误的库(#include "ws2_32.h"),当我添加"-Iws2_32"链接器选项问题解决。
#define _WINSOCK_DEPRECATED_NO_WARNINGS
//#ifndef WIN32_LEAN_AND_MEAN
//#define WIN32_LEAN_AND_MEAN
//#endif
#include <stdio.h>
#include <string.h>
#include "winsock2.h"
#include "ws2_32.h"
#include <WS2tcpip.h>
#define SERVER_BUF 10
#define SAME 0
#define G_BUF 1024
int main()
{
WSADATA wsa=NULL;
SOCKET s, new_socket;
char buf[SERVER_BUF];
char gbuf[G_BUF];
struct sockaddr_in server_information;
struct sockaddr_in client_information;
WSAStartup(MAKEWORD(2, 2), &wsa);
printf("nInitialising Winsock...");
if (WSAStartup(MAKEWORD(2, 2), &wsa) != 0)
{
printf("Failed. Error Code : %d", WSAGetLastError());
return 1;
}
printf("Initialised.n");
server_information.sin_family = AF_INET;
server_information.sin_addr.s_addr = inet_addr("192.168.10.16");
server_information.sin_port = htons(8888);
s = socket(AF_INET, SOCK_STREAM, 0);
if (s != -1)
{
printf("Soket created...");
}
if (bind(s, (struct sockaddr*)&server_information, sizeof(server_information)) == SOCKET_ERROR)
{
printf("Bind failed with error code : %d", WSAGetLastError());
}
puts("Bind done");
while (s != 0) {
if (listen(s, 1) != -1)
{
printf("Listening is successful.");
}
socklen_t size = sizeof(client_information);
new_socket = accept(s, (struct sockaddr*)&client_information, &size);
if (new_socket == -1)
{
printf("Accept failed");
return -2;
}
else
puts("Connection accepted");
for (;;) {
int res = recv(new_socket, buf, SERVER_BUF, 0);
printf("amount of bytes received:%dn", res);
puts(buf);
fgets(gbuf, G_BUF, stdin);
send(new_socket, gbuf,strlen(gbuf)+1, 0);
if (strcmp(buf, "exit") == SAME)
break;
}
}
return 0;
}
ws2_32
库对于Windows上的套接字功能确实是必需的。
所以你必须链接-lws2_32
标志。
但是包含行应该是#include <winsock2.h>
,并且-取决于您调用的函数-可能是其他的,如#include <ws2tcpip.h>
。
请注意,由于这些库被认为是Windows上的系统包含文件,您应该使用尖括号(<>
)而不是双引号(""
)。