代码搜索:IP技术

找到约 10,000 项符合「IP技术」的源代码

代码结果 10,000
www.eeworm.com/read/107082/15613432

cpp gprs_ip.cpp

#include #include #include "GPRS_net.h" #include "GPRS_ip.h" #include "GPRS_udp.h" #define IP_TTL 128 /* Time To Live for an outgoing IP datagram */ IPKT *
www.eeworm.com/read/107082/15613434

h gprs_ip.h

/* Ensure network structures aren't padded (DJGPP and VC) */ #define MAXDATA 1500 /* Maximum Ethernet data size */ #define MAXPACK (MAXDATA-8) /* Maximum packet size (incl. datalin
www.eeworm.com/read/106664/15631281

jsp view_ip.jsp

查看留言者IP
www.eeworm.com/read/106153/15645598

asp look_ip.asp

www.eeworm.com/read/106121/15647119

c print-ip.c

/* * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary f
www.eeworm.com/read/106121/15647160

h ip6.h

/* @(#) $Header: /tcpdump/master/tcpdump/ip6.h,v 1.3 2000/12/17 23:07:48 guy Exp $ (LBL) */ /* $NetBSD: ip6.h,v 1.9 2000/07/13 05:34:21 itojun Exp $ */ /* $KAME: ip6.h,v 1.9 2000/07/02 21:01:32 itojun
www.eeworm.com/read/105943/15652205

url ip phone.url

[DEFAULT] BASEURL=http://shannon.home.chinaren.net/doc/ipph.htm [InternetShortcut] URL=http://shannon.home.chinaren.net/doc/ipph.htm Modified=C06FC5671BFDBF0133
www.eeworm.com/read/105750/15659699

txt ip-mib.txt

IP-MIB DEFINITIONS ::= BEGIN IMPORTS MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter32, IpAddress, mib-2 FROM SNMPv2-SMI PhysAddress FROM SNMPv2-TC
www.eeworm.com/read/105749/15659769

cs ip02.cs

//IP02.cs源程序: //导入程序用到的名称空间 using System ; using System.Net; using System.Windows.Forms ; using System.Drawing ; public class Form3 : Form { //定义二个标签 private Label label1 ;
www.eeworm.com/read/105549/15665271

c ip_jiaoyan.c

/************************ IP 协议采用统一的校验算法,其计算比较简单:设校验和初值为0,然后对数据每16位求异或,结果取反,便得校验和。校验时将数据(含校验和)按同样的算法求和,结果为0则数据正确,不为0表示通讯出错,需要丢弃该数据包。这样能简化校验程序设计,提高TCP/IP协议的效率。 所有TCP/IP协议的校验和计算和数据包的校验均由上面的子程序完成。不过需 ...