代码搜索:IP
找到约 10,000 项符合「IP」的源代码
代码结果 10,000
www.eeworm.com/read/359873/10119360
obj ip.obj
www.eeworm.com/read/359873/10119409
h ip.h
//-----------------------------------------------------------------------------
// IP.H
//
//-----------------------------------------------------------------------------
void ip_send(UCHAR xdat
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