• 大小: 0.19M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-22
  • 语言: C/C++
  • 标签: 源代码  FTP  TFT  

资源简介

tftpd32 源代码VC

资源截图

代码片段和文件信息

//////////////////////////////////////////////////////
//
// Projet TFTPD32.  Mars 2000 Ph.jounin
// File dialog_common.c: 
// A sendmsg API for both GUI and services
//          It‘s a king of TcpPPSend with a complimentory
//          integer parameter
//
// released under artistic license (see license.txt)
//
//////////////////////////////////////////////////////



#include “headers.h“
#include 
#include 


int SendMsg (SOCKET s int type const void *data int size)
{
int Rc=1;
unsigned short full_size = htons (size + sizeof type);
    if (data==NULL)  size=0;
    // send length of message
    Rc = send (s (char *) & full_size sizeof full_size 0);
    Rc = send (s (char *) & type sizeof type 0);
    if (size>0) Rc = TcpSend (s data size 0);
return Rc;
} // SendMsg



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        2437  2008-02-11 22:24  tftpd32.sln
     目录           0  2008-05-15 20:21  _common\
     文件        3203  2008-06-08 17:49  _common\bootpd_util.h
     文件        3766  2008-06-08 17:50  _common\custom.h
     文件         845  2008-06-08 17:46  _common\dialog_common.c
     文件         311  2008-06-08 17:47  _common\dialog_common.h
     文件        4391  2008-06-08 17:47  _common\dialog_socket.h
     文件        1668  2008-06-08 17:47  _common\headers.h
     文件        1942  2008-06-08 17:47  _common\setinifilename.c
     文件        4862  2008-06-08 17:48  _common\settings.h
     文件        4291  2008-06-08 17:48  _common\Tftp.h
     文件        4467  2008-06-08 17:49  _common\tftp_struct.h
     目录           0  2008-06-08 18:24  _gui\
     文件        3501  2008-06-08 18:23  _gui\about.c
     文件        1562  2008-06-08 18:24  _gui\browse.c
     文件        3538  2007-08-09 15:22  _gui\gui_bootpd.c
     文件        4372  2007-08-09 15:22  _gui\gui_bootpd_settings.c
     文件       12017  2008-06-08 17:53  _gui\gui_dialog.c
     文件        7130  2007-08-09 15:22  _gui\gui_functions.h
     文件        6957  2007-08-09 15:22  _gui\gui_gauges.c
     文件        1961  2007-08-09 15:22  _gui\gui_log.c
     文件       27312  2008-05-15 13:05  _gui\gui_main.c
     文件       12628  2007-08-09 15:22  _gui\gui_move_win.c
     文件       19431  2007-08-09 15:22  _gui\gui_settings.c
     文件         396  2007-08-09 15:22  _gui\gui_struct.h
     文件        1718  2007-08-09 15:22  _gui\gui_syslogd.c
     文件        4471  2008-06-08 17:53  _gui\gui_tftpd.c
     文件        4523  2008-06-08 17:53  _gui\gui_tftp_dir.c
     文件         500  2007-08-09 15:22  _gui\resource.h
     文件        3174  2008-06-08 17:53  _gui\squelette.c
     文件        6485  2007-08-09 15:22  _gui\tftpd32.h
............此处省略87个文件信息

评论

共有 条评论