netbyte.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef _MSDOS
  36. #ifndef _WIN32
  37. #ifndef _UNIX
  38. #ifndef _SYMBIAN
  39. #ifndef REAL_MEDIA_FILE_SERVER_PORT
  40. #pragma once
  41. #endif
  42. #endif
  43. #endif 
  44. #endif
  45. #endif
  46.  
  47. #ifndef NETBYTE_H
  48. #define NETBYTE_H 1
  49. #include "hxtypes.h"
  50. #if defined (_UNIX)
  51. #include <unistd.h>
  52. #include <netinet/in.h>
  53. #endif
  54. #ifndef INADDR_NONE
  55. #define INADDR_NONE -1
  56. #endif
  57. struct IHXBuffer;
  58. typedef UINT16 NetWord, HostWord;
  59. typedef UINT32 NetDWord, HostDWord;
  60. #ifdef __cplusplus
  61. #ifndef NET_ENDIAN
  62. extern "C" {
  63. extern NetWord WToNet(HostWord wHost);
  64. extern HostWord WToHost(NetWord wNet);
  65. extern NetDWord DwToNet(HostDWord dwHost);
  66. extern HostDWord DwToHost(NetDWord dwNet);
  67. }
  68. #else
  69. inline NetWord WToNet(HostWord wHost) {return (wHost);};
  70. inline HostWord WToHost(NetWord wNet) {return (wNet);};
  71. inline NetDWord DwToNet(HostDWord dwHost) {return (dwHost);};
  72. inline HostDWord DwToHost(NetDWord dwNet) {return (dwNet);};
  73. #endif
  74. #else
  75. #ifndef NET_ENDIAN
  76. extern NetWord WToNet(HostWord wHost);
  77. extern HostWord WToHost(NetWord wNet);
  78. extern NetDWord DwToNet(HostDWord dwHost);
  79. extern HostDWord DwToHost(NetDWord dwNet);
  80. #else
  81. #define WToNet(wHost) ((NetWord) (wHost))
  82. #define WToHost(wNet) ((HostWord) (wNet ))
  83. #define DwToNet(dwHost) ((NetDWord) (dwHost))
  84. #define DwToHost(dwNet) ((HostDWord) (dwNet ))
  85. #endif
  86. #endif
  87. #ifdef __cplusplus
  88. extern "C" 
  89. {
  90. int TestBigEndian(void);
  91. }
  92. #endif // __cplusplus
  93. /*  Converts 2 byte ints from big endian to little endian or vice versa */
  94. void SwapWordBytes(HostWord *data, int numInts);
  95. /*  Converts 4 byte ints from big endian to little endian or vice versa */
  96. void SwapDWordBytes(HostDWord *data, int numInts);
  97. /*
  98.  * Test if a given IP address is string or numeric. 
  99.  * Return 1 is NUMERIC, and 0 if STRING
  100.  * e.g.
  101.  * 177.345.3.54 ---> numeric address (all digits and 3 dots '.')
  102.  * foobar.prognet.com ---> string address
  103.  * 2001.space.odessey.com --> string address
  104.  */
  105. int IsNumericAddr(const char* addr, UINT32 len);
  106. /*
  107.  * On IRIX the inet_ntoa() method is broken, so this method is a
  108.  * for all platforms. 
  109.  * It takes a HOST byte ordered IP address and an empty IHXBuffer 
  110.  * into which it stuffs a string of the numeric for of the IP addr
  111.  * aaa.bbb.ccc.ddd
  112.  *
  113.  * SHOULD take a network byte orderd address, but it was incorrectly
  114.  * developed and all over the server we rely on the fact that
  115.  * NetLongToAscii() and and HXInetNtoa() accept addresses in the HOST
  116.  * byte order. and we are too late in the release cycle to fix this
  117.  * problem.
  118.  *
  119.  * XXXAAK -- for now it will only create full IP addresses a.b.c.d
  120.  * and not of the type b.c.d or c.d
  121.  */
  122. void NetLongToAscii(UINT32 addr, IHXBuffer* addrBuf);
  123. char* HXInetNtoa(UINT32 addr);
  124. UINT32 HXinet_addr(const char* cp);
  125. // mainly for sprintf'ing a NETBYTE order decimal string
  126. char* NetLongAddrToDecimalStr(ULONG32 ulAddr);
  127. // actually takes in a NET byte ordered address
  128. char* NetLongToAsciiStr(UINT32 addr);
  129. #endif /* NETBYTE_H */