/*@author: lgh@
*
* */
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <netinet/in.h>//ntohl
#include <arpa/inet.h> //inet_addr
#include <sys/types.h>
#ifdef UNICODE
#define T(x) __TXT(x)
#define __TXT(s) L ## s
#else
#define T(s) s
#endif /* UNICODE */
/*
#if defined (DEBUG_DISABLE)
#undef DEBUG_DISABLE
#else
#endif
*/ /*********************************************************************/
#ifndef DEBUG_DISABLE
/*
#define lprint(tag, fmt...) \
do{if(tag)printf(fmt);}while(0)
*/
#define lprint(x, ...) do{printf(x, ##__VA_ARGS__);}while(0)
#else
#define lprint(tag, fmt...)
#endif /*********************************************************************/
#ifdef CONFIG_DUAL_IMAGE
#if defined (CONFIG_RT2880_FLASH_2M)
#define IMAGE1_SIZE 0x100000
#elif defined (CONFIG_RT2880_FLASH_4M)
#define IMAGE1_SIZE 0x200000
#elif defined (CONFIG_RT2880_FLASH_8M)
#define IMAGE1_SIZE 0x400000
#elif defined (CONFIG_RT2880_FLASH_16M)
#define IMAGE1_SIZE 0x800000
#elif defined (CONFIG_RT2880_FLASH_32M)
#define IMAGE1_SIZE 0x1000000
#else
#define IMAGE_SIZE TEST
#endif
#endif//end #ifdef,否则会出现25:1: error: unterminated #ifdef,这样的错 /*********************************************************************/
typedef void* (*square_t)(int* x); void* square (int* x)
{
*x *= *x;
return (void*)square;
} int lt1224(void)
{
int x = ;
((square_t)((square_t)((square_t)square (&x)) (&x)) (&x)) (&x);
printf ("%d\n", x);
return ;
}
/*********************************************************************/
#ifndef NIP4
#define NIP4_FMT "%u.%u.%u.%u"
#define NIP4(addr) \
((unsigned char *)&addr)[], \
((unsigned char *)&addr)[], \
((unsigned char *)&addr)[], \
((unsigned char *)&addr)[] #define HIP4_FMT "%u.%u.%u.%u"
#define HIP4(addr) \
((unsigned char *)&addr)[], \
((unsigned char *)&addr)[], \
((unsigned char *)&addr)[], \
((unsigned char *)&addr)[]
#endif #ifndef NIP6
#define NIP6_FMT "%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x"
#define NIP6(addr) \
(unsigned)((addr)[]), \
(unsigned)((addr)[]), \
(unsigned)((addr)[]), \
(unsigned)((addr)[]), \
(unsigned)((addr)[]), \
(unsigned)((addr)[]), \
(unsigned)((addr)[]), \
(unsigned)((addr)[]), \
(unsigned)((addr)[]), \
(unsigned)((addr)[]), \
(unsigned)((addr)[]), \
(unsigned)((addr)[]), \
(unsigned)((addr)[]), \
(unsigned)((addr)[]), \
(unsigned)((addr)[]), \
(unsigned)((addr)[])
#endif /*
#ifdef __CHECKER__
#define __bitwise__ __attribute__((bitwise))
#else
#define __bitwise__
#endif
#ifdef __CHECK_ENDIAN__
#define __bitwise __bitwise__
#else
#define __bitwise
#endif
typedef __u16 __bitwise __le16;
typedef __u16 __bitwise __be16;
typedef __u32 __bitwise __le32;
typedef __u32 __bitwise __be32;
typedef __u64 __bitwise __le64;
typedef __u64 __bitwise __be64;
*/ typedef __signed__ char __s8;
typedef unsigned char __u8; typedef __signed__ short __s16;
typedef unsigned short __u16; typedef __signed__ int __s32;
typedef unsigned int __u32; typedef __signed__ long __s64;
typedef unsigned long __u64; union nf_inet_addr {
__u32 all[];
__u32 ip;// __be32 ip;
// __be32 ip6[4];
struct in_addr in;
struct in6_addr in6;
};
/*********************************************************************/ union endian{
int i;
char c;
}; int main(int argc, char *argv[])
{
char *s="";
char *p;
p=strpbrk(s,"a1 839"); /*1会最先在s字符串中找到*/
lprint("%s\n",p);
p=strpbrk(s,"");/*3 会最先在s 字符串中找到*/
lprint("%s\n",p);
lprint("%s\n", T("deling")); lprint("************************************************************************\n");
lt1224(); lprint("************************************************************************\n");
if(argc != )
{
return ;
}
union endian le;
le.i = 0x3456;/*16bit宽的数*/
if(le.c == 0x56){
lprint("little endian\n");
}else lprint("big endian\n");
printf("%0x, %0x\n", le.i, le.c); char ipdot[] = {};/*点分十进制*/
long iphost = ;/*主机字节序,x86一般都是小端模式*/
long ipnet = ;/*网络字节序,大端模式*/ strncpy(ipdot, argv[], sizeof(ipdot));
lprint("Get ipdot:%s\n", ipdot); ipnet = inet_addr(ipdot);
lprint("Get ipnet:%ld:"NIP4_FMT"\n", ipnet, NIP4(ipnet));
iphost = ntohl(ipnet);
lprint("Get iphost:%ld:"NIP4_FMT"\n", iphost, NIP4(iphost));
lprint("Get iphost:%ld:"HIP4_FMT"\n", iphost, HIP4(iphost));
iphost++;
lprint("Get iphost++:%ld:"HIP4_FMT"\n", iphost, HIP4(iphost)); /*net --> host*/
unsigned array[];
array[] = (ntohl(ipnet) >> ) & 0xFF;
array[] = (ntohl(ipnet) >> ) & 0xFF;
array[] = (ntohl(ipnet) >> ) & 0xFF;
array[] = ntohl(ipnet) & 0xFF;
lprint(NIP4_FMT"\n", array[], array[], array[], array[]); lprint("%ld.%ld.%ld.%ld\n", ipnet & 0xff,
ipnet>> & 0xff,
ipnet>> & 0xff,
ipnet>> & 0xff);
lprint("************************************************************************\n");
return ;
}

ip地址转化代码实例的更多相关文章

  1. C#验证ip地址的代码

    如下的代码是关于C#验证ip地址的代码. public Boolean CheckIPValid(String strIP) { char chrFullStop = '.'; string[] ar ...

  2. JSP 获取真实IP地址的代码

    [转载]JSP 获取真实IP地址的代码 JSP 获取真实IP地址的代码 在JSP里,获取客户端的IP地址的方法是:request.getRemoteAddr(),这种方法在大部分情况下都是有效的.   ...

  3. 【转载】JSP 获取真实IP地址的代码

    JSP 获取真实IP地址的代码 在JSP里,获取客户端的IP地址的方法是:request.getRemoteAddr(),这种方法在大部分情况下都是有效的.   但是在通过了 Apache,Squid ...

  4. Linux下获取本机IP地址的代码

    Linux下获取本机IP地址的代码,返回值即为互联网标准点分格式的字符串. #define ETH_NAME "eth0" //获得本机IP地址 char* GetLocalAdd ...

  5. js获取IP地址多种方法实例教程

    js获取IP地址方法总结   js代码获取IP地址的方法,如何在js中取得客户端的IP地址.原文地址:js获取IP地址的三种方法 http://www.jbxue.com/article/11338. ...

  6. 将IP地址转化为整数

    $ip = 'IP地址';echo $intip = sprintf('%u',ip2long($ip)); //转换为无符号整型echo long2ip($intip);//将整型转换为ip

  7. 获取Linux下的IP地址 java代码

    /** * 获取Linux下的IP地址 * * @return IP地址 * @throws SocketException */ public static String getLinuxLocal ...

  8. C#获取本地IP地址[常用代码段]

    获得当前机器的IP代码,假设本地主机为单网卡 string strHostName = Dns.GetHostName(); //得到本机的主机名 IPHostEntry ipEntry = Dns. ...

  9. openresty(nginx)中使用lua脚本获取请求IP地址的代码

    人狠话不多,直接上代码:------------------------------------------------------------------------------------- lo ...

随机推荐

  1. iOS自动布局一

    Align: Pin:

  2. K-Means(K均值)算法

    昨晚在脑内推导了一晚上的概率公式,没推导出来,今早师姐三言两语说用K-Means解决,太桑心了,昨晚一晚上没睡好. 小笨鸟要努力啊,K-Means,最简单的聚类算法,好好实现一下. 思路: 共有M个样 ...

  3. WCF帮助类

    using BJSW.ZTFX.Client.Silverlight.MapBusinessService; using System.ServiceModel; using System.SL.Ap ...

  4. WIN10 64位下VS2015 MFC直接添加 halcon 12的CPP文件实现视觉检测

    近段时间开始接触halcon,但是在VS2015里面使用,无论是配置还是生产EXE文件,都不如意. 加上网上的教程很多,经过多次测试,其实有很多地方无需修改,如果修改的太多也失去了直接添加封装的意义. ...

  5. 使用WIF实现单点登录Part I——Windows Identity Foundation介绍及环境搭建

    首先先说一下什么是WIF(Windows Identity Foundation).由于各种历史原因,身份验证和标识的管理一般都比较无规律可循.在软件里加入“身份验证”功能意味着要在你的代码里混进处理 ...

  6. 安装wampserver出现“The Program can't start because MSVCR110.dll is missing from your computer. Try reinstalling the program to fix this problem”

    问题描述: 今天安装wampserver的时候出现"The Program can't start because MSVCR110.dll is missing from your com ...

  7. [terry笔记]ora-00904 invalid identifier—同义词

    今天遇到一个问题,说起来也简单,但是困扰我半天. 升级数据库后,一个功能无法运行,在后台观察到其sql,发现sql中包含一个包执行不了,报错ora-00904 invalid identifier w ...

  8. Android去除CPU占用过高时屏幕四周闪红框

    话说有些时间没有更新博客了,今天正好解决这个问题,顺便把它记录下来.. 今天遇到的情况是这样的,当CPU占用过高时,屏幕四周会出现一个红框. 闪一次两次算了,但是挺萌的(TMD)不停的闪,我的钛合金狗 ...

  9. NOJ1018-深度遍历二叉树

    题目要求很简单,前中后序遍历一棵二叉树.坑爹的是这道题的输入数据和测试数据压根不一样,找了好久原因,去讨论区看见有别人发的测试样例,修改了一下就AC了 测试样例是这个:DEH##FJ##G#CK### ...

  10. VMware-workstation-full-9.0.0-812388+汉化补丁+有效密钥

    更新内容:https://www.vmware.com/support/ws90/doc/workstation-90-release-notes.html 官网下载地址:https://my.vmw ...