javaextensions/datagram/datagram/src/nativedatagramconnection.cpp
branchRCL_3
changeset 83 26b2b12093af
parent 71 d5e927d5853b
equal deleted inserted replaced
77:7cee158cb8cd 83:26b2b12093af
   131     if (writeBuffer == NULL)
   131     if (writeBuffer == NULL)
   132     {
   132     {
   133         writeBuffer = new char[requiredNativeBufferLength + 1];
   133         writeBuffer = new char[requiredNativeBufferLength + 1];
   134     }
   134     }
   135     /* Copy the data to be written from java buffer to the native buffer.  */
   135     /* Copy the data to be written from java buffer to the native buffer.  */
   136     if (writeBuffer != NULL)
       
   137     JNIArrayUtils::CopyToNative(aJni, aJavaBuffer, aOffset,
   136     JNIArrayUtils::CopyToNative(aJni, aJavaBuffer, aOffset,
   138                                 requiredNativeBufferLength, writeBuffer);
   137                                 requiredNativeBufferLength, writeBuffer);
   139 
   138 
   140     if (!inet_aton(aDestAddr, &addr.sin_addr))
   139     if (!inet_aton(aDestAddr, &addr.sin_addr))
   141     {
   140     {