C++ header files for UDP in Windows?(Windows 中 UDP 的 C++ 头文件?)
问题描述
我有一个通过 UDP 协议发送数据的 linux 应用程序.它使用这些头文件:
I have a linux applications which sends data over UDP protocol. It uses these header files:
#include <stdio.h>
/* standard C i/o facilities */
#include <stdlib.h>
/* needed for atoi() */
#include <unistd.h>
/* defines STDIN_FILENO, system calls,etc */
#include <sys/types.h> /* system data type definitions */
#include <sys/socket.h> /* socket specific definitions */
#include <netinet/in.h> /* INET constants and stuff */
#include <arpa/inet.h> /* IP address conversion stuff */
#include <netdb.h>
#include <string.h> /* for string and memset etc */
/* gethostbyname */
#include <iostream>
#include <fstream>
#include <opencv/highgui.h>
#include <opencv/cv.h>
#include <opencv/cxcore.h>
我想制作我的应用程序的 WIndows 版本.但是上面的一些头文件在 WINdows 中不起作用,尤其是 UDP 的.
I want to make a WIndows version of my app. But some of the above header files do not work in WIndows, especially those for UDP.
我应该在 Windows (Visual Studio 2010) 中替换哪些头文件?
Which header files should I substitute them for in Windows (Visual Studio 2010)?
更新:
好的,所以我的标题现在看起来像这样:
Ok, so my header now looks like this:
#include <iostream>
#include <fstream>
#include "stdafx.h"
#include <cv.h>
#include <cxcore.h>
#include <highgui.h>
#include <winsock2.h>
我在尝试编译时收到此错误(以及许多其他类似错误):
I get this error when trying to compile (and many other similar errors):
Error 13 error C2011: 'fd_set' : 'struct' type redefinition c:program files (x86)microsoft sdkswindowsv7.0aincludewinsock2.h 132 1 Client
推荐答案
在编译时,您需要使用 Winsock2.h
而不是 Unix 头文件.
At compile-time, you need to use Winsock2.h
instead of the Unix headers.
在链接时,包含 ws2_32.lib
以提供到所需系统 DLL 的链接.
At link-time, include ws2_32.lib
to provide linkage to the required system DLL.
这篇关于Windows 中 UDP 的 C++ 头文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Windows 中 UDP 的 C++ 头文件?
基础教程推荐
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- C++,'if' 表达式中的变量声明 2021-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 设计字符串本地化的最佳方法 2022-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01