Win32 平台 C socket 程式設計練習

2021-06-04 00:29:08 字數 781 閱讀 4695

使用c++實現win32平台的tcp/ip網路程式設計,練習socket的使用。

服務端:

#include #include const unsigned short listen_port = 8700;

int main(int argc, char* argv)

{ using namespace std;

word wversionrequested = makeword(1, 1);

wsadata wsadata;

int err = wsastartup(wversionrequested, &wsadata);

if ( 0 != err )

{ cout<<"wsastartup failed. return: "<

客戶端:

#include #include const char* server_ip = "127.0.0.1";

const unsigned short server_port = 8700;

int main(int argc, char* argv)

{ using namespace std;

word wversionrequested = makeword(1, 1);

wsadata wsadata;

int err = wsastartup(wversionrequested, &wsadata);

if ( 0 != err )

{ cout<<"wsastartup failed. return: "<

win32下C Socket程式設計

這個例子是從網上轉抄過來的,經過本人測試,沒有任何問題,想學socket程式設計的人可以看一下,非常不錯的入門程式。伺服器端 include include using namespace std const unsigned short listen port 7788 pragma commen...

可用於Win32平台的flex bison

雖然flex bison是linux世界的東東,有些情況下卻需要在windows上使用它們,自己用mingw編譯flex和bison又沒那個能力,只好找一些第三方的port,好在終於讓我找到了乙個,雖然比較老,但是用於學習編譯原理還是夠了 檔名url flex.exe bison.exe bison...

win32控制台 win32工程 MFC工程的區別

空專案 控制台 問2個問題即可。1.控制台 vs win32 mfc?嗯,有不有臉?有臉,選win32或mfc。沒有臉,選控制台。臉就是視窗,就是window.s 這個有臉 這個沒臉 控制台與win32 mfc 互動方式的不同,前者是cml 命令模式 後者是gui 使用者介面 2.mfc vs wi...