Searched refs:usTCPLength (Results 1 – 5 of 5) sorted by relevance
/hal_espressif-3.6.0/components/freemodbus/modbus/include/ |
D | mbport.h | 229 BOOL xMBTCPPortGetRequest( UCHAR **ppucMBTCPFrame, USHORT * usTCPLength ); 231 BOOL xMBTCPPortSendResponse( UCHAR *pucMBTCPFrame, USHORT usTCPLength ); 244 BOOL xMBMasterTCPPortGetRequest( UCHAR **ppucMBTCPFrame, USHORT * usTCPLength ); 246 BOOL xMBMasterTCPPortSendResponse( UCHAR *pucMBTCPFrame, USHORT usTCPLength );
|
/hal_espressif-3.6.0/components/freemodbus/modbus/tcp/ |
D | mbtcp_m.c | 137 USHORT usTCPLength = usLength + MB_TCP_FUNC; in eMBMasterTCPSend() local 147 if( xMBMasterTCPPortSendResponse( pucMBTCPFrame, usTCPLength ) == FALSE ) in eMBMasterTCPSend()
|
D | mbtcp.c | 138 USHORT usTCPLength = usLength + MB_TCP_FUNC; in eMBTCPSend() local 148 if( xMBTCPPortSendResponse( pucMBTCPFrame, usTCPLength ) == FALSE ) in eMBTCPSend()
|
/hal_espressif-3.6.0/components/freemodbus/tcp_master/port/ |
D | port_tcp_master.c | 932 xMBMasterTCPPortGetRequest( UCHAR ** ppucMBTCPFrame, USHORT * usTCPLength ) in xMBMasterTCPPortGetRequest() argument 936 *usTCPLength = pxInfo->usRcvPos; in xMBMasterTCPPortGetRequest() 941 if (pxInfo->xRcvErr == ERR_OK && *usTCPLength > 0) { in xMBMasterTCPPortGetRequest() 948 …rtWritePoll(MbSlaveInfo_t* pxInfo, const UCHAR * pucMBTCPFrame, USHORT usTCPLength, ULONG xTimeout) in xMBMasterTCPPortWritePoll() argument 958 xRes = send(pxInfo->xSockId, pucMBTCPFrame, usTCPLength, TCP_NODELAY); in xMBMasterTCPPortWritePoll() 967 xMBMasterTCPPortSendResponse( UCHAR * pucMBTCPFrame, USHORT usTCPLength ) in xMBMasterTCPPortSendResponse() argument 983 … int xRes = xMBMasterTCPPortWritePoll(pxInfo, pucMBTCPFrame, usTCPLength, MB_TCP_SEND_TIMEOUT_MS); in xMBMasterTCPPortSendResponse()
|
/hal_espressif-3.6.0/components/freemodbus/tcp_slave/port/ |
D | port_tcp_slave.c | 677 xMBTCPPortGetRequest( UCHAR ** ppucMBTCPFrame, USHORT * usTCPLength ) in xMBTCPPortGetRequest() argument 682 *usTCPLength = xConfig.pxCurClientInfo->usTCPBufPos; in xMBTCPPortGetRequest() 693 xMBTCPPortSendResponse( UCHAR * pucMBTCPFrame, USHORT usTCPLength ) in xMBTCPPortSendResponse() argument 720 xErr = send(xConfig.pxCurClientInfo->xSockId, pucMBTCPFrame, usTCPLength, TCP_NODELAY); in xMBTCPPortSendResponse()
|