代码搜索:Protocol
找到约 10,000 项符合「Protocol」的源代码
代码结果 10,000
www.eeworm.com/read/226865/14449861
java supportedtypes.java
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
import javax.microedition.media.*;
/** Displays supported media types for a given protocol */
public class SupportedTypes e
www.eeworm.com/read/226401/14476832
java udpmetric.java
package com.ict.netcom2.metric;
import java.nio.ByteBuffer;
/**
* 根据UDP的熟识端口所确定的应用的原始指标
* 26 * 24 = 624 bytes
*/
public class UDPMetric {
public static final int length = 624;
www.eeworm.com/read/226401/14476838
java ipmetric.java
package com.ict.netcom2.metric;
import java.nio.ByteBuffer;
/**
* 38 * 24 + 168 = 1080 bytes
* @author as
*
*/
public class IPMetric {
public static final int length = 1080;
www.eeworm.com/read/225618/14530053
cc sock.cc
#include "root.h"
#include "sock.h"
#include "tcp.h"
#include "udp.h"
#include "raw.h"
#include
int inetsocket(int domain, int type, int protocol)
{
sock_t * s = NULL;
int e;
switch
www.eeworm.com/read/225430/14540955
h ip.h
/* IP Structures for 'TCP/IP Lean' */
/*
** v0.01 JPB 1/8/92
** v0.02 JPB 29/7/97 Added fake packet type for SLIP
** v0.03 JPB 16/12/98 Added 'MAXUDPDATA'
** v0.04 JPB 16/12/99 Updated for book
www.eeworm.com/read/124798/14543224
h pseudo.h
struct pshdr{
unsigned int saddr;
unsigned int daddr;
unsigned char zero;
unsigned char protocol;
unsigned short length;
};
www.eeworm.com/read/225143/14554988
d main.o.d
main.o: main.c ./main.h C:/WinAVR/avr/include/avr/io.h \
C:/WinAVR/avr/include/avr/sfr_defs.h C:/WinAVR/avr/include/inttypes.h \
C:/WinAVR/avr/include/stdint.h C:/WinAVR/avr/include/avr/iom128.h
www.eeworm.com/read/124628/14555972
c pppdump.c
/*
* PPPDUMP.C
*
*/
#include
#include "global.h"
#include "mbuf.h"
#include "iface.h"
#include "internet.h"
#include "ppp.h"
#include "trace.h"
#ifdef TURBOC_SWITCH_BUG
#pra
www.eeworm.com/read/124628/14556079
h ppp.h
#ifndef _PPP_H
#define _PPP_H
/*
* This implementation of PPP is declared to be in the public domain.
*
* Acknowledgements and correction history may be found in PPP.C
*/
#ifndef _GLOBAL_