代码搜索:IP技术
找到约 10,000 项符合「IP技术」的源代码
代码结果 10,000
www.eeworm.com/read/261580/4320852
c ip_frag.c
/* @file
*
* This is the IP packet segmentation and reassembly implementation.
*
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistrib
www.eeworm.com/read/259928/4335844
cpp trans_ip.cpp
#include "stdafx.h"
#include "trans_ip.h"
#include "../common.h"
CString trans_ipUC(ULONG ip)
{
byte* p = (byte*)&ip;
CString str;
str.Format(_T("%d.%d.%d.%d"), p[0], p[1], p[2], p[3]);
www.eeworm.com/read/259928/4335857
h trans_ip.h
#ifndef _TRANS_IP_H
#define _TRANS_IP_H
CString trans_ipUC(ULONG ip);
ULONG trans_ipCU(LPCTSTR ip);
// will use htons
USHORT trans_port(USHORT port);
#endif // _TRANS_IP_H
www.eeworm.com/read/259928/4335872
h ip_port.h
#ifndef _IP_PORT_H
#define _IP_PORT_H
#include "trans_ip.h"
class ip_port
{
CString combine; // "192.168.0.90:8102
CString ip; // "192.168.0.90"
USHORT port; // 8102, look port
www.eeworm.com/read/259928/4336006
~cpp ~ip_alias.~cpp
#include "stdafx.h"
#include "ip_alias.h"
#include "reg.h"
LPCTSTR rkIPAlias = _T("Settings\\IPAlias");
bool operator==(const ip_alias& it1, const ip_alias& it2)
{
return (it1.ip == it2.ip)
www.eeworm.com/read/259928/4336007
~h ~ip_alias.~h
#ifndef _IP_ALIAS_H
#define _IP_ALIAS_H
#include "vector"
#include "ip_port.h"
//////////////////////////////////////////////////////////////////////////
// IP别名项
class ip_alias
{
ip_port
www.eeworm.com/read/259928/4336010
h ip_alias.h
#ifndef _IP_ALIAS_H
#define _IP_ALIAS_H
#include "vector"
#include "ip_port.h"
//////////////////////////////////////////////////////////////////////////
// IP别名项
//##ModelId=3F90BAB8039A
c
www.eeworm.com/read/259928/4336012
cpp ip_alias.cpp
#include "stdafx.h"
#include "ip_alias.h"
#include "reg.h"
LPCTSTR rkIPAlias = _T("Settings\\IPAlias");
bool operator==(const ip_alias& it1, const ip_alias& it2)
{
return (it1.ip == it2.ip)
www.eeworm.com/read/259851/4338812
h ip_addr.h
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitte
www.eeworm.com/read/259851/4338815
h ip_frag.h
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permi