C 开发网络通信传输实例 完整源码主要介绍tcp 网络通信传输 一些函数的调用 .
├── T-test-finished
│ ├── TcpTransferClientDemo
│ │ ├── TcpTransferClientDemo.pro
│ │ ├── TcpTransferClientDemo.pro.user
│ │ ├── TcpTransferClientDemo.pro.user.LSllEu
│ │ ├── main.cpp
│ │ ├── widget.cpp
│ │ ├── widget.h
│ │ └── widget.ui
│ ├── TcpTransferServerDemo
│ │ ├── TcpTransferServerDemo.pro
│ │ ├── TcpTransferServerDemo.pro.user
│ │ ├── main.cpp
│ │ ├── widget.cpp
│ │ ├── widget.h
│ │ └── widget.ui
│ ├── build-TcpTransferClientDemo-Desktop_Qt_5_14_2_MinGW_64_bit-Debug
│ │ ├── Makefile
│ │ ├── Makefile.Debug
│ │ ├── Makefile.Release
│ │ ├── debug
│ │ │ ├── TcpTransferClientDemo.exe
│ │ │ ├── main.o
│ │ │ ├── moc_predefs.h
│ │ │ ├── moc_widget.cpp
│ │ │ ├── moc_widget.o
│ │ │ └── widget.o
│ │ ├── release
│ │ └── ui_widget.h
│ ├── build-TcpTransferClientDemo-Desktop_Qt_5_14_2_MinGW_64_bit-Release
│ │ ├── Makefile
│ │ ├── Makefile.Debug
│ │ ├── Makefile.Release
│ │ ├── debug
│ │ ├── release
│ │ │ ├── D3Dcompiler_47.dll
│ │ │ ├── Qt5Core.dll
│ │ │ ├── Qt5Gui.dll
│ │ │ ├── Qt5Network.dll
│ │ │ ├── Qt5Svg.dll
│ │ │ ├── Qt5Widgets.dll
│ │ │ ├── TcpTransferClientDemo.exe
│ │ │ ├── bearer
│ │ │ │ └── qgenericbearer.dll
│ │ │ ├── iconengines
│ │ │ │ └── qsvgicon.dll
│ │ │ ├── imageformats
│ │ │ │ ├── qgif.dll
│ │ │ │ ├── qicns.dll
│ │ │ │ ├── qico.dll
│ │ │ │ ├── qjpeg.dll
│ │ │ │ ├── qsvg.dll
│ │ │ │ ├── qtga.dll
│ │ │ │ ├── qtiff.dll
│ │ │ │ ├── qwbmp.dll
│ │ │ │ └── qwebp.dll
│ │ │ ├── libEGL.dll
│ │ │ ├── libGLESv2.dll
│ │ │ ├── libgcc_s_seh-1.dll
│ │ │ ├── libstdc -6.dll
│ │ │ ├── libwinpthread-1.dll
│ │ │ ├── main.o
│ │ │ ├── moc_predefs.h
│ │ │ ├── moc_widget.cpp
│ │ │ ├── moc_widget.o
│ │ │ ├── opengl32sw.dll
│ │ │ ├── platforms
│ │ │ │ └── qwindows.dll
│ │ │ ├── styles
│ │ │ │ └── qwindowsvistastyle.dll
│ │ │ ├── translations
│ │ │ │ ├── qt_ar.qm
│ │ │ │ ├── qt_bg.qm
│ │ │ │ ├── qt_ca.qm
│ │ │ │ ├── qt_cs.qm
│ │ │ │ ├── qt_da.qm
│ │ │ │ ├── qt_de.qm
│ │ │ │ ├── qt_en.qm
│ │ │ │ ├── qt_es.qm
│ │ │ │ ├── qt_fi.qm
│ │ │ │ ├── qt_fr.qm
│ │ │ │ ├── qt_gd.qm
│ │ │ │ ├── qt_he.qm
│ │ │ │ ├── qt_hu.qm
│ │ │ │ ├── qt_it.qm
│ │ │ │ ├── qt_ja.qm
│ │ │ │ ├── qt_ko.qm
│ │ │ │ ├── qt_lv.qm
│ │ │ │ ├── qt_pl.qm
│ │ │ │ ├── qt_ru.qm
│ │ │ │ ├── qt_sk.qm
│ │ │ │ ├── qt_uk.qm
│ │ │ │ └── qt_zh_TW.qm
│ │ │ └── widget.o
│ │ └── ui_widget.h
│ ├── build-TcpTransferServerDemo-Desktop_Qt_5_14_2_MinGW_64_bit-Debug
│ │ ├── Makefile
│ │ ├── Makefile.Debug
│ │ ├── Makefile.Release
│ │ ├── debug
│ │ │ ├── TcpTransferServerDemo.exe
│ │ │ ├── main.o
│ │ │ ├── moc_predefs.h
│ │ │ ├── moc_widget.cpp
│ │ │ ├── moc_widget.o
│ │ │ └── widget.o
│ │ ├── release
│ │ └── ui_widget.h
│ └── build-TcpTransferServerDemo-Desktop_Qt_5_14_2_MinGW_64_bit-Release
│ ├── Makefile
│ ├── Makefile.Debug
│ ├── Makefile.Release
│ ├── debug
│ ├── release
│ │ ├── D3Dcompiler_47.dll
│ │ ├── Qt5Core.dll
│ │ ├── Qt5Gui.dll
│ │ ├── Qt5Network.dll
│ │ ├── Qt5Svg.dll
│ │ ├── Qt5Widgets.dll
│ │ ├── TcpTransferServerDemo.exe
│ │ ├── bearer
│ │ │ └── qgenericbearer.dll
│ │ ├── iconengines
│ │ │ └── qsvgicon.dll
│ │ ├── imageformats
│ │ │ ├── qgif.dll
│ │ │ ├── qicns.dll
│ │ │ ├── qico.dll
│ │ │ ├── qjpeg.dll
│ │ │ ├── qsvg.dll
│ │ │ ├── qtga.dll
│ │ │ ├── qtiff.dll
│ │ │ ├── qwbmp.dll
│ │ │ └── qwebp.dll
│ │ ├── libEGL.dll
│ │ ├── libGLESv2.dll
│ │ ├── libgcc_s_seh-1.dll
│ │ ├── libstdc -6.dll
│ │ ├── libwinpthread-1.dll
│ │ ├── main.o
│ │ ├── moc_predefs.h
│ │ ├── moc_widget.cpp
│ │ ├── moc_widget.o
│ │ ├── opengl32sw.dll
│ │ ├── platforms
│ │ │ └── qwindows.dll
│ │ ├── styles
│ │ │ └── qwindowsvistastyle.dll
│ │ ├── translations
│ │ │ ├── qt_ar.qm
│ │ │ ├── qt_bg.qm
│ │ │ ├── qt_ca.qm
│ │ │ ├── qt_cs.qm
│ │ │ ├── qt_da.qm
│ │ │ ├── qt_de.qm
│ │ │ ├── qt_en.qm
│ │ │ ├── qt_es.qm
│ │ │ ├── qt_fi.qm
│ │ │ ├── qt_fr.qm
│ │ │ ├── qt_gd.qm
│ │ │ ├── qt_he.qm
│ │ │ ├── qt_hu.qm
│ │ │ ├── qt_it.qm
│ │ │ ├── qt_ja.qm
│ │ │ ├── qt_ko.qm
│ │ │ ├── qt_lv.qm
│ │ │ ├── qt_pl.qm
│ │ │ ├── qt_ru.qm
│ │ │ ├── qt_sk.qm
│ │ │ ├── qt_uk.qm
│ │ │ └── qt_zh_TW.qm
│ │ └── widget.o
│ └── ui_widget.h
└── 找例子网_T-test-finished.rar
27 directories, 148 files
评论