|
22 | 22 | #include "logging_stack.h" |
23 | 23 |
|
24 | 24 |
|
25 | | -static int32_t Recv_Cb( void * pvCallerContext, |
| 25 | +static int Recv_Cb( void * pvCallerContext, |
26 | 26 | unsigned char * pucReceiveBuffer, |
27 | 27 | size_t xReceiveLength ); |
28 | | -static int32_t Send_Cb( void * pvCallerContext, |
| 28 | +static int Send_Cb( void * pvCallerContext, |
29 | 29 | const unsigned char * pucData, |
30 | 30 | size_t xDataLength ); |
31 | 31 |
|
@@ -198,11 +198,11 @@ int32_t Transport_Send( NetworkContext_t * pNetworkContext, |
198 | 198 | * |
199 | 199 | * @return The number of bytes actually read or appropirate error code. |
200 | 200 | */ |
201 | | -static int32_t Recv_Cb( void * pvCallerContext, |
| 201 | +static int Recv_Cb( void * pvCallerContext, |
202 | 202 | unsigned char * pucReceiveBuffer, |
203 | 203 | size_t xReceiveLength ) |
204 | 204 | { |
205 | | - int32_t rc; |
| 205 | + int rc; |
206 | 206 | NetworkContext_t * pNetworkContext = ( NetworkContext_t * ) ( pvCallerContext ); |
207 | 207 |
|
208 | 208 | if( ( pNetworkContext == NULL ) || ( pucReceiveBuffer == NULL ) ) |
@@ -235,12 +235,12 @@ static int32_t Recv_Cb( void * pvCallerContext, |
235 | 235 | * |
236 | 236 | * @return The number of bytes actually sent. |
237 | 237 | */ |
238 | | -static int32_t Send_Cb( void * pvCallerContext, |
| 238 | +static int Send_Cb( void * pvCallerContext, |
239 | 239 | const unsigned char * pucData, |
240 | 240 | size_t xDataLength ) |
241 | 241 | { |
242 | 242 | NetworkContext_t * pNetworkContext = ( NetworkContext_t * ) ( pvCallerContext ); |
243 | | - int32_t rc; |
| 243 | + int rc; |
244 | 244 |
|
245 | 245 | if( ( pNetworkContext == NULL ) || ( pucData == NULL ) ) |
246 | 246 | { |
|
0 commit comments