代码搜索:IP软核
找到约 10,000 项符合「IP软核」的源代码
代码结果 10,000
www.eeworm.com/read/359873/10119412
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/359873/10119415
lst ip.lst
C51 COMPILER V8.02 IP 08/07/2008 16:11:57 PAGE 1
C51 COMPILER V8.02, COMPILATION OF MODULE IP
OBJECT MODULE PLACED IN IP.O
www.eeworm.com/read/164269/10120449
ip-down
#!/bin/sh
if [ -r /etc/resolv.backup ]; then
mv /etc/resolv.backup /etc/resolv.conf
fi
www.eeworm.com/read/164269/10120452
ip-up
#!/bin/sh
if [ -n "$DNS1" ] && [ -r /etc/ppp/resolv.conf ]; then
mv /etc/resolv.conf /etc/resolv.backup
cp /etc/ppp/resolv.conf /etc/resolv.conf
chmod go+r /etc/resolv.conf
fi
www.eeworm.com/read/164213/10122692
cpp ip.cpp
#include "stdafx.h"
#include "dibapi.h"
// Definitions required for convolution image filtering
#define KERNELCOLS 3
#define KERNELROWS 3
#define KERNELELEMENTS (KERNELCOLS * KERNELROWS)
//
www.eeworm.com/read/163710/10148721
h ip.h
#ifndef __IP_H
#define __IP_H
#define UDP 0x11
/*
* This structure defines an ip header.
*/
struct iphdr {
unsigned char ihl:4,
version:4;
unsigned char tos;
unsigned short tot_len;
uns
www.eeworm.com/read/163710/10148730
c ip.c
#include "skbuff.h"
#include "eth.h"
#include "ip.h"
#include "udp.h"
#include "arp.h"
#include "utils.h"
static unsigned long local_ip = 0;
unsigned short ip_fast_csum(unsigned char * iph,
www.eeworm.com/read/163539/10154513
gif ip.gif
www.eeworm.com/read/163523/10154918
h ip.h
/* Ensure network structures aren't padded (DJGPP and VC) */
#pragma pack(1)
#define MAXDATA 1500 /* Maximum Ethernet data size */
#define MAXPACK (MAXDATA+14) /* Maximum packet siz
www.eeworm.com/read/163523/10154926
c ip.c
/* Debug option to send IP datagrams with a dummy 'options' field */
#define BIGHEAD 0 /* Set non-zero to send datagrams with larger IP hdrs */
#include
#include
#incl