代码搜索:IP Modem
找到约 10,000 项符合「IP Modem」的源代码
代码结果 10,000
www.eeworm.com/read/311482/13630158
c ip.c
/** \file ip.c
* \brief OpenTCP IP protocol implementation
* \author
* \li Jari Lahti (jari.lahti@violasystems.com)
* \li Vladan Jovanovic (vladan.jovanovic@violasystems.com)
* \version
www.eeworm.com/read/310845/13642616
gif ip.gif
www.eeworm.com/read/310396/13652505
h ip.h
//-----------------------------------------------------------------------------
// IP.H
//
//-----------------------------------------------------------------------------
void ip_send(UCHAR xdat
www.eeworm.com/read/310396/13652506
c ip.c
//-----------------------------------------------------------------------------
// Net IP.C
// This module is the IP layer
// Refer to RFC 791, 1122, and RFC 815 (fragmentation)
//----------------
www.eeworm.com/read/309724/13665727
h ip.h
#ifdef IP_GLOBALS
#define IP_EXT
#else
#define IP_EXT extern
#endif
#ifdef Big_End
union w { uint32 dwords;
struct {uint16 high ;uint16 low;}words;
struct {ui
www.eeworm.com/read/309724/13665731
c ip.c
#define IP_GLOBALS
#include "Config.h"
#include "../include/cfg_net.h"
OS_EVENT *RecIcmpQFlag;
OS_EVENT *RecTcpQFlag;
OS_EVENT *RecUdpQFlag;
OS_EVENT *SendFlag;
Rec_Ptr RECQ
www.eeworm.com/read/309724/13665780
o ip.o
www.eeworm.com/read/309235/13678081
h ip.h
#ifndef __IP_H
#define __IP_H
#define UDP 0x11
#define ICMP 0x01
/*
* This structure defines an ip header.
*/
__packed struct iphdr {
unsigned ihl:4,
version:4;
unsigned char tos;
unsig
www.eeworm.com/read/309235/13678107
c ip.c
#include "../../inc/config.h"
#include "skbuff.h"
#include "eth.h"
#include "ip.h"
#include "arp.h"
#include "icmp.h"
#include "udp.h"
#include "utils.h"
#ifdef TFTP_DOWNLOAD_SUPPORT
stat
www.eeworm.com/read/308418/13701828