CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - 1 to 4 u
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Sub Category
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
xml-soap-webservice
Remote Control
P2P
TCP/IP stack
SNMP
Grid Computing
CloudComputing
Search - 1 to 4 u - List
[
Internet-Network
]
delphi_demo
DL : 0
DSC(Data Service Center)是用于接收DTU数据和向DTU发送数据的服务软件,和DTU之间通讯使用开发包动态库gprs_dll.dll,该文件包括和DTU通讯所需要的全部API函数,包括服务的启动、数据发送、数据接收、关闭服务等,DSC实际上是架构在gprs_dll.dll所提供的功能之上的数据处理软件,其所需要完成的功能如下: 1、 调用API启动服务和停止服务; 2、 调用API接收数据和向DTU发送数据,并且对数据作进一步处理; 3、 调用API轮询DTU用户列表,如果需要可作进一步处理,包括用户认证等; 4、 调用API对DTU进行远程配置 -DSC (Data Service Center) is used to receive data and to the DTU DT U send data services software, and communications between the DTU use development kits gprs_dll.dll DLL, the documents include communications and DTU need all API function, including the launch, data sending, receiving data, the closure of services, DSC is actually in gprs_dll.dll framework provided by the above functions of data processing software, they need to complete the following functions : 1, API calls to stop and restart services; 2. API call and receive data to the DTU send data, as well as data for further processing; 3. Call API Polling DTU user list, if necessary, for further processing, including user authentication; 4. Calling the API for remote configuration DTU
Date
: 2008-10-13
Size
: 314.38kb
User
:
aspdotnet
[
Internet-Network
]
一个判断远程主机存活程序代码
DL : 0
一个判断远程主机存活程序代码(ping) #include #include #include #include #include "winsock.h" #pragma comment(lib,"Ws2_32"); #define SEND_SIZE 32 #define PACKET_SIZE 4096 #define ICMP_ECHO 8 #define ICMP_ECHOREPLY 0 struct icmp { unsigned char icmp_type; unsigned char icmp_code; unsigned short icmp_cksum; unsigned short icmp_id; unsigned short icmp_seq; unsigned long icmp_data; }; struct ip { unsigned char ip_hl:4; unsigned char ip_v:4; unsigned char ip_tos; unsigned short ip_len; unsigned short ip_id; unsigned short ip_off; unsigned char ip_ttl; unsigned char ip_p; unsigned short ip_sum; unsigned long ip_src; unsigned long ip_dst; }; unsigned char sendpacket[PACKET_SIZE]; unsigned char recvpacket[PACKET_SIZE]; struct sockaddr_in dest_addr; struct sockaddr_in from_addr; int sockfd; int pid; unsigned short cal_chksum(unsigned short *addr,int len); int pack(int pack_no); int unpack(unsigned char *buf,int len); void send_packet(void); void recv_packet(void); void main(int argc,char *argv[]) { struct hostent *host; struct protoent *protocol; WSADATA wsaData; int timeout=1000; int SEND_COUNT=4; int i; char *par_host; par_host=argv[argc-1]; //IP赋值 switch(argc) { case 2: break; case 3: if(strcmp(argv[1],"-t")==0) { SEND_COUNT=10000; break; } //fall through default: printf("usage: %s [-t] Host name or IP address\n",argv[0]); exit(1); } if(WSAStartup(0x1010,&wsaData)!=0) { printf("wsastartup error\n"); exit(1); } if( (protocol=getprotobyname("icmp") )==NULL) { printf("getprotobyname error\n"); exit(1); } /* printf("%s\n",protocol->p_name); printf("%s\n",protocol->p_aliases); printf("%d\n",protocol->p_proto); system("pause"); */ if( (sockfd=socket(AF_INET,SOCK_RAW,protocol->p_proto) )<0) { printf("socket error\n"); exit(1); } if(setsockopt(sockfd,SOL_SOCKET,SO_RCVTIMEO,(char*)&timeout,sizeof(timeout))h_length); //resolve address to hostname if(host=gethostbyaddr(host->h_addr,4,PF_INET)) par_host=host->h_name; // //printf("%s\n",par_host); // } else if( dest_addr.sin_addr.s_addr=inet_addr(par_host)==INADDR_NONE) { printf("Unkown host %s\n",par_host); exit(1); } pid=getpid(); /* printf("%d\n",pid); system("pause"); */ printf("Pinging %s [%s]: with %d bytes of data:\n\n",par_host,inet_ntoa(dest_addr.sin_addr),SEND_SIZE); for(i=0;i1) { sum+=*w++; nleft-=2; } if( nleft==1) { *(unsigned char *)(&answer)=*(unsigned char *)w; sum+=answer; } sum=(sum>>16)+(sum&0xffff); sum+=(sum>>16); answer=~sum; return answer; } //打包 int pack(int pack_no) { int packsize; struct icmp *icmp; packsize=8+SEND_SIZE; icmp=(struct icmp*)sendpacket; icmp->icmp_type=ICMP_ECHO; icmp->icmp_code=0; icmp->icmp_cksum=0; icmp->icmp_seq=pack_no; icmp->icmp_id=pid; icmp->icmp_data=GetTickCount(); icmp->icmp_cksum=cal_chksum( (unsigned short *)icmp,packsize); /*校验算法*/ return packsize; } //解包 int unpack(unsigned char *buf,int len) { struct ip *ip; struct icmp *icmp; double rtt; int iphdrlen; ip=(struct ip *)buf; iphdrlen=ip->ip_hl*4; icmp=(struct icmp *)(buf+iphdrlen); if( (icmp->icmp_type==ICMP_ECHOREPLY) && (icmp->icmp_id==pid) ) { len=len-iphdrlen-8; rtt=GetTickCount()-icmp->icmp_data; printf("Reply from %s: bytes=%d time=%.0fms TTL=%d icmp_seq=%u\n", inet_ntoa(from_addr.sin_addr), len, rtt, ip->ip_ttl, icmp->icmp_seq); return 1; } return 0; } //发送 void send_packet() { int packetsize; static int pack_no=0; packetsize=pack(pack_no++); if( sendto(sockfd,(char *)sendpacket,packetsize,0,(struct sockaddr *)&dest_addr,sizeof(dest_addr) )=0) success=unpack(recvpacket,n); else if (WSAGetLastError() == WSAETIMEDOUT) { printf("Request timed out.\n"); return; } }while(!success); } UID5380 帖子239 精华0 积分1289 阅读权限40 来自软件学院 在线时间81 小时 注册时间2006-5-22 最后登录2007-2-24 查看详细资料 TOP
Date
: 2009-05-29
Size
: 5.74kb
User
:
shuiyuan313
[
Internet-Network
]
仙吻智能网站生成系统 1.0
DL : 0
功能对象(系统管理员): 1.可以新建N个用户网站,删除用户网站. 2.可以设置修改用户网站有效期,用户继费管理. 3.修改用户网站资料,管理用户网站内容. 4.可向所有用户发站内短信. 5.设置系统行业区域,让用户站选择分类. 6.随意添加模板,无须其他设置.用户站就可以选择模板. 7.支持彻底删除用户资料. (用户网站管理员): 1.修改站标,选择网站模板. 2.随意添加删除栏目. 3.随意添加删除管理网页,强大的在线web编辑功能. 4.有信息发布系统(你可以吊用数据库),产品管理系统,订单管理系统. 5.支持站内短信,用户留言. 6用户网站访问方法(例如有个用户站名为ip363)就访问www.ip363.com/show/diy/?u=ip363-functional object (system administrators) : 1. Can the new N-site users, delete users website. 2. Users can set up to amend the site is valid, user fees following management. 3. Revised site users, Web content management users. 4. To which users have the station messaging. 5. the system of regional industry, enabling users to choose station classification. 6. arbitrarily adding template, no other set. users can choose to stand on the template. 7. to support the deletion of user information. (Webmasters users) : 1. Xiu change stations marked choose website template. 2. add to delete arbitrary columns. 3. add to delete arbitrary management website, a strong online web editing. 4. there is a message delivery system (you can use hanging database), the product management system, order managemen
Date
: 2026-01-07
Size
: 1.97mb
User
:
绿冬
[
Internet-Network
]
VipshellSrc
DL : 0
软件简介: 2006年7月15日 主要功能: 1.屏幕监视/控制。 2.CMD命令行 3.摄象头 4.文件管理 5.进程管理 6.键盘记录 其中键盘记录,没有使用钩子记录,为了防止一些杀毒软件阻止安装钩子 虽然没有钩子,但是对于一般的密码窗口,IE窗口也依然能准确记录(包括粘贴). 2006.8.19 由于忙于工作,忙于学习.没时间在继续开发了,把代码发给大家继续更 新 编译前把工程设置成 Unicode VipShell 是服务端代码 VipClient 客户端代码 把纯真IP数据库 和 客户端放在一起 即可显示物理地址 有问题请联系 QQ:175111923 M-Software Introduction: July 15, 2006 main functions: 1. Screen monitor/control. 2.CMD command line 3.摄象头4. Document Management 5. Process Management 6. Keyloggers keyloggers in which there is no record of the use of hooks, in order to prevent some antivirus software to prevent installation hook Although there is no hook, but the password for the average window IE window still accurate records (including paste) .2006.8.19 as a result of busy work, busy learning. no time in the continued development, and the U.S. continue to update the code sent to the compiler before the project is set to Unicode VipShell customer service side code VipClient pure IP-side code to the client database and put together to display the physical address of a problem please contact QQ: 175111923 M
Date
: 2026-01-07
Size
: 372kb
User
:
wxm
[
Internet-Network
]
4.70.0.1215__WININET
DL : 0
是一个mac地址,供大家分析研究使用,建议开放下载。-Is a mac address for the U.S. analysis of the use, proposals to open up the download.
Date
: 2026-01-07
Size
: 160kb
User
:
jiajianyang
[
Internet-Network
]
netshop
DL : 0
网上购物系统,用JSP来开发,方便大家下载-Online shopping systems, using JSP to develop to facilitate the U.S. Download
Date
: 2026-01-07
Size
: 209kb
User
:
马千里
[
Internet-Network
]
tagProject
DL : 0
本人最近做的标签管理系统(java源码),jsp+servlet+mysql,仅供大家参考-Recently I had to do the tag management system (java source code), jsp+ Servlet+ Mysql, only reference to U.S.
Date
: 2026-01-07
Size
: 5.26mb
User
:
赖明涛
[
Internet-Network
]
Tanslate
DL : 0
java版实现了文件的传输功能,大家参考下-java version of the document to achieve the transmission function, refer to the following U.S.
Date
: 2026-01-07
Size
: 640kb
User
:
hotjavanet
[
Internet-Network
]
cm-u-boot-1.1.4.tgz
DL : 0
适用于ARM9的U-BOOT,主芯片是AT91RM92-ARM9 apply to the U-BOOT, the main chip is AT91RM92
Date
: 2026-01-07
Size
: 24.8mb
User
:
余爽
[
Internet-Network
]
Test
DL : 0
聊天室的一个简单设计!但是还不够完善!!! 大家给与指正-Chat room a simple design! But not perfect enough! ! ! U.S. to give correct me! !
Date
: 2026-01-07
Size
: 2kb
User
:
yindeyu
[
Internet-Network
]
sfjs
DL : 0
为 了提高用户身份认证和授权管理的灵活性,从We b 应用系统的安全性角度出发,讨论了 一 种在. N E T F r a me w o r k下保证应用程序安全性的身份验证和授权模型,并给出了模型的具体实现方法。 该模型利用 F o r ms身份验证方法对用户的身份进行鉴别。在授权处理上,模型结合统一资源定位( u . J f o r m R e s o u r c e L o c a t o r , U R L ) 授权模式和用户所具有的系统角色,分别从页面级和页面操作级对用户的访问进行 控制。该模型在企业局域网环境内能够提供比较灵活的身份认证和基于角色的授权服务。实际应用表明, 基于该模型的We b应用系统能够对用户的访问进行有效的控制,从而保证了系统的安全性-In order to enhance user authentication and authorization management flexibility, from the We b application system security point of view, discussed 1 Species. NETF ra me work to ensure application security identity authentication and authorization model, and give a model of the specific methods of implementation. The model F or ms using authentication methods on the user s identity were identified. At authorized treatment, the model combination of Uniform Resource Locator (u. J form R esource L ocator, URL) authorization model and the user has the role of the system, separately from the page-level and page-level operations on the user s visit Control. The model in the enterprise LAN environment can provide a more flexible role-based identity authentication and authorization services. Practical application shows that Based on the model We b applications can access the user s effective control, thereby ensuring the system security
Date
: 2026-01-07
Size
: 245kb
User
:
楚知
[
Internet-Network
]
liaotianshi
DL : 0
客户端的实现效果 1.登录服务器,如果服务器端口号和IP号输入的字符都是"0"则,客户端连接到默认的服务器 2.输入聊天昵称 3.输入"-quit"会自动退出聊天 4.输入"-getList"会得到在线用户的名称 5.输入"-to <用户名称> <聊天信息>"会把信息发送到指定的用户处,他人看不到 6.输入"-help"会得到客户端相应操作帮助 6.直接输入内容则会将内容发送到所有在线的用户处 客户端的类与方法 1.建立连接方法:connectServer(String ip,int port) 2.断开连接方法:disconnectServer() 2.发送消息方法:sendMes(String mes) 3.接受消息方法:getMes() 4.接受一次消息:getMesOnce() 5.获得用户列表:getList(String mes) 6.测试连接方法:testConnect(String ip,int port) 7.检查用户名 :checkNickName(String nickName) 8.获得帮助列表:helpList(); 9.各项内容的输入在main方法中进行 -Achieve the effect of client 1. Log in server, if the server port number and enter the IP number of the characters are "0" is the client to connect to the default server 2. Enter a chat nickname 3. Enter "-quit" will exit chat 4. Enter "-getList" will be the name of online users 5. Enter "-to <user name> <chat information>" information will be sent to designated users, the others can not see 6. Enter "-help" will assist the client to operate the corresponding 6. Directly into the content of the content will be sent to all online users Client class and method 1. To establish a connection method: connectServer (String ip, int port) 2. Disconnect method: disconnectServer () 2. Ways to send message: sendMes (String mes) 3. Ways to accept message: getMes () 4. To receive a message: getMesOnce () 5. To obtain a list of users: getList (String mes) 6. Test Connection method: testConnect (String ip, int port) 7. Check u
Date
: 2026-01-07
Size
: 3kb
User
:
lee
[
Internet-Network
]
feigechuanshuV0.8
DL : 0
1、扫描本地局域网内同本机同一网段的所有计算机,并将能ping通机器的机器名放在列表中,可以对列表排序,刷新(对JTree的操作)。 2、最多添加3个自定义网段。(对于机房特别实用,因为机房不同房间的机器通常在不同的网段中)。自定义服务监听端口(注:保证两台机器端口一致才能互相通信)。 3、对于列表中的计算机,可以发送系统消息(前提:系统的信使服务开启,注:windows xp sp2 以后的计算机都是默认关闭的,所以系统服务无效,好在我们学校机房是2000系统)。本网段群发,和局域网群发功能暂未实现(因为群发太邪恶了,实训期间深有体会)。 4、任意两台在线(两台机器都打开本软件)可以互相聊天(目前看来除了机房上课的无聊间隙,这个功能实用性实在有限)。 5、任意两台在线的机器可以互相传文件(在宿舍试了一下速度基本可以达到百兆局域网上限,所以用在同一宿舍互传文件也不错,省去了U盘、移动硬盘插拔的麻烦,也不需设置恼人的windows网上邻居或FTP服务)。-1, scan the local LAN with this machine all the computers in the same network segment, and will pass the machine can ping the machine name on the list, you can sort the list, refresh (for JTree s operation). 2, add up to three custom segment. (For room especially useful, because the machine room is usually different rooms in a different network segment). Customized service listening port (Note: to ensure that the same port to two machines communicate with each other). 3, for the list of computers, you can send system messages (the premise: The system messenger service is turned on, note: windows xp sp2 after the computer is off by default, so the system service is invalid, and good in our school computer room is a 2000 system). Ben Wang segment mass, and the mass function of local area network yet to achieve (because the mass is too evil, and practical training during the profound understanding). 4, any two-line (two machines are to open the software) can chat with each oth
Date
: 2026-01-07
Size
: 153kb
User
:
卜晓旸
[
Internet-Network
]
sockssvc
DL : 0
歡迎 SocksSvc,集合的MFC類實現一個簡單的襪子服務器。 這個想法最初背後 SocksSvc了解SOCKS協議以及它是如何實現在Win32。 如需了解有關議定書的襪子你應該閱讀 RFC 1928(襪子 5),玫瑰花1929(用戶名/密碼身份驗證襪子 5)和襪子 4規格,您可以下載這些從 www.socks.permeo.com huān yíng SocksSvc, jí hé deMFC lèi shí xiàn yī gè jiǎn dān de wà zi fú wù qì。 zhè ge xiǎng fǎ zuì chū bèi hòu SocksSvc liǎo jiěSOCKS xié yì yǐ jí tā shì rú hé shí xiàn zàiWin32。 rú xū liǎo jiě yǒu guān yì dìng shū de wà zi nǐ yīng gāi yuè dú RFC 1928(wà zi 5), méi guī huā1929(yòng hù míng/mì mǎ shēn fèn yàn zhèng wà zi 5) hé wà zi 4guī gé, nín kě yǐ xià zài zhè xiē cóng www.socks.permeo.com 建議更好的譯法:-Welcome to SocksSvc, a collection of MFC classes to implement a simple Socks server. The idea behind SocksSvc was originally to learn about the Socks protocol and how it is implemented on Win32. For detailed information about the Socks Protocol you should read RFC 1928 (Socks 5), RFC 1929 (Username/Password authentication for Socks 5) and the Socks 4 specification, You can download these from www.socks.permeo.com
Date
: 2026-01-07
Size
: 49kb
User
:
睡魔
[
Internet-Network
]
turnal
DL : 0
这一章提供了一些有关隧道技术的额外信息,因为隧道在移动I P中扮演了一个非常重要 的角色。首先,我们从I P分片的基本介绍开始,因为将I P包分片影响了隧道入口处许多封装 方法的使用。然后我们详细介绍移动I P中使用的三种隧道技术: I P的I P封装( IP in IP E n c a p s u l a t i o n)、最小封装( Minimal Encapsulation) 和通用路由封装GRE (Generic Routing E n c a p s u l a t i o n )。-This chapter provides some additional information about tunneling, because the tunnel in Mobile IP to play a very important Role. First, we introduce a basic IP fragmentation began, because the IP packet fragmentation affects the number of package tunnel entrance Methods. Then we detail the use of the three Mobile IP tunneling: IP in IP encapsulation (IP in IP E ncapsulation), the smallest package (Minimal Encapsulation) and Generic Routing Encapsulation GRE (Generic Routing E n c a p s u l a t i o n).
Date
: 2026-01-07
Size
: 260kb
User
:
guanguojing
[
Internet-Network
]
zyiislian
DL : 0
中易的流量交换系统,需要的相信大家都知道。完全能用,无限制。 1:导入数据库文件zylink.sql,修改config.inc.php文件里面的数据库链接。 2:打开settings.php,修改authorized_url值为你的授权域名,siteurl为域名的主域名,如授权域名u.zyiis.com,主域名为 zyiis.com。 3:需要把根目录的i.html中的域名改成你的,还有code/code.js同上改成你域名。 4:后台地址 admin/index.php 帐号 admin 密码 admin-Easy to traffic exchange system, you need to believe we all know. Fully use and unrestricted. 1: import the database file zylink.sql modify the config.inc.php file inside the database link. 2: Open the settings.php modify authorized_url value of your authorized domain siteurl as the main domain name of the domain name, authorized domain u.zyiis.com, the main domain name zyiis.com. 3: the domain name in the root directory of i.html need to changed, there is code/code.js Ibid changed your domain name. 4: the backstage address admin/index.php account admin Password admin
Date
: 2026-01-07
Size
: 2.33mb
User
:
江水
[
Internet-Network
]
compression-website
DL : 0
安装前配置Mysql参数: 1、打开functions.php $info[ db_host ] = localhost //数据库地址,一般默认即可 $info[ db_user ] = root //数据库用户名,请填 $info[ db_psw ] = passwd //数据库密码,请填 $info[ db_dba ] = dba //数据库表名,请填 2、黑白名单规则说明: 如果是 ali727.com 网址,那么请添加规则: /.*ali727\.com.*/i 如果是 u.ali727.com 网址,请添加规则: /.*u\.ali727\.com.*/i 也可以添加关键字,比如添加规则: /.*fu-ck-GFW.*/i , 那么所有地址中包含 fu-ck-GFW 的都会被禁止。 3、解压缩包后,找到install.lock,重命名为install.php, 浏览器访问:<你的网址>/install.php,进行安装,当出现done字符时,表示安装完毕。 4、安装完成后,切记将install.php重命名为install.lock。-Pre-installation configuration Mysql parameters: 1, open the functions.php $ info [ db_host ] = localhost // address of the database, the general default can be $ info [ db_user ] = root // database user name, please fill $ info [ db_psw ] = passwd // database password, please fill $ info [ db_dba ] = dba // database table names, please fill 2, black-and-white list rules: If ali727.com Web, then add the rule: /* ali727 \ com*/i If u.ali727.com Web, add the rule: /* u \ ali727 \ com*/i You can also add keywords, such as adding the rule: /* Fu-ck-GFW.*/I , All addresses contained in the fu-ck-GFW would be prohibited. 3, unzip the package and find install.lock rename to install.php Browser access: your URL/install.php, installation, when done character, which means that the installation is complete. 4、After the installation is complete,
Date
: 2026-01-07
Size
: 5kb
User
:
张万鹏
[
Internet-Network
]
yunbo
DL : 0
《分享说明》 云点播源码4.2,已修复BT种子无法上传功能,包含多个云点播版本,实现多功能云点播共同运行。 使用云点播源码4.1的请用云点播源码4.2覆盖,然后强制刷新浏览器访问即可正常运行! 预览地址:http://vod.dbanklm.com/ 《安装仅需一步》 【解压将文件夹内所有文件上传至您需要展示的网站域名下即可】 例如:我要将云点播安装在根目录域名vod.dbanklm.com之下 将所有文件上传至域名vod.dbanklm.com的根目录之下就可以了 然后打开http://vod.dbanklm.com/看看效果就是的了 【适合电影类BT资源站安装】 【免责声明】 【禁止色站调用 违者后果自负】 《修改调用接口教程文件》 打开diaoyong.html,修改http://www.XXXX.com/index.php#!u= 为你的域名 例如:我将http://www.XXXX.com/index.php#!u= 修改成http://vod.dbanklm.com/index.php#!u= 便是我的云点播4.1的调用连接 《修改QQ群》 在index.php中修改数字1008610086为你的qq群号码即可 .-"Share the explanation" Cloud-demand source 4.2 , fixed BT seeds can not upload features, including multiple cloud-demand versions , to achieve multi- cloud-on-demand joint operation. Using cloud-demand source 4.1 4.2 Use source cloud cover demand , and then force a refresh browser access to normal operation ! Preview Address : http://vod.dbanklm.com/ "Install only one step ." [ Extract all the files within the folder you want to upload to the website under the domain name can be displayed ] For example: I want to install cloud-demand under the root directory domain vod.dbanklm.com All documents will be uploaded to the root directory of the domain name vod.dbanklm.com below can be Then open http://vod.dbanklm.com/ look of the effect is [For movies like BT Resource Station Installation ] 【Disclaimer】 [ Color outbound calls ban offenders peril ] "Modify Call Interface tutorial file " Open diaoyong.html, modify http://www.XXXX.com/index.php#! U = for your domain
Date
: 2026-01-07
Size
: 84kb
User
:
石生
[
Internet-Network
]
keycrackhelp
DL : 0
安卓安全,没有听过,什么 破解安卓,第一步,学学吧-Android safe is more and more important how to get useful information ,itcan help u
Date
: 2026-01-07
Size
: 1.36mb
User
:
ddd
[
Internet-Network
]
FAQ16
DL : 0
这个程序可以支持WINDOWS按FAT16格式化的U盘,程序精简-This program can support WINDOWS according to FAT16 format the U disk, streamline program
Date
: 2026-01-07
Size
: 675kb
User
:
Dcnhrjr
«
1
2
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.