utils.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * INET An implementation of the TCP/IP protocol suite for the LINUX
  3.  * operating system.  INET is implemented using the  BSD Socket
  4.  * interface as the means of communication with the user level.
  5.  *
  6.  * Various kernel-resident INET utility functions; mainly
  7.  * for format conversion and debugging output.
  8.  *
  9.  * Version: $Id: utils.c,v 1.8 2000/10/03 07:29:01 anton Exp $
  10.  *
  11.  * Author: Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  12.  *
  13.  * Fixes:
  14.  * Alan Cox : verify_area check.
  15.  * Alan Cox : removed old debugging.
  16.  * Andi Kleen : add net_ratelimit()  
  17.  *
  18.  * This program is free software; you can redistribute it and/or
  19.  * modify it under the terms of the GNU General Public License
  20.  * as published by the Free Software Foundation; either version
  21.  * 2 of the License, or (at your option) any later version.
  22.  */
  23. #include <asm/uaccess.h>
  24. #include <asm/system.h>
  25. #include <linux/types.h>
  26. #include <linux/kernel.h>
  27. #include <linux/sched.h>
  28. #include <linux/string.h>
  29. #include <linux/mm.h>
  30. #include <linux/socket.h>
  31. #include <linux/in.h>
  32. #include <linux/errno.h>
  33. #include <linux/stat.h>
  34. #include <stdarg.h>
  35. #include <linux/inet.h>
  36. #include <linux/netdevice.h>
  37. #include <linux/etherdevice.h>
  38. #include <net/ip.h>
  39. #include <net/protocol.h>
  40. #include <net/tcp.h>
  41. #include <linux/skbuff.h>
  42. /*
  43.  * Display an IP address in readable format. 
  44.  */
  45.  
  46. char *in_ntoa(__u32 in)
  47. {
  48. static char buff[18];
  49. char *p;
  50. p = (char *) &in;
  51. sprintf(buff, "%d.%d.%d.%d",
  52. (p[0] & 255), (p[1] & 255), (p[2] & 255), (p[3] & 255));
  53. return(buff);
  54. }
  55. /*
  56.  * Convert an ASCII string to binary IP. 
  57.  */
  58.  
  59. __u32 in_aton(const char *str)
  60. {
  61. unsigned long l;
  62. unsigned int val;
  63. int i;
  64. l = 0;
  65. for (i = 0; i < 4; i++) 
  66. {
  67. l <<= 8;
  68. if (*str != '') 
  69. {
  70. val = 0;
  71. while (*str != '' && *str != '.') 
  72. {
  73. val *= 10;
  74. val += *str - '0';
  75. str++;
  76. }
  77. l |= val;
  78. if (*str != '') 
  79. str++;
  80. }
  81. }
  82. return(htonl(l));
  83. }