Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of GMMP by
Operation/ProfileInfo/GMMP_ProfileInfo.cpp
- Committer:
- lesmin
- Date:
- 2015-08-13
- Revision:
- 5:bb6c1ee1d5f0
- Parent:
- 0:32c20cfb2b30
File content as of revision 5:bb6c1ee1d5f0:
/* * GMMP_ProfileInfo.c * * Created on: 2013. 11. 18. * Author: root */ #include "GMMP_ProfileInfo.h" int GMMP_Profile_Req(Profile_Req* pstProfile_Req) { if(pstProfile_Req == NULL) { return SERVER_INFO_NOT_FOUND; } if(CheckSocket() != 0) { return SERVER_INFO_NOT_FOUND; } return WriteTCP( (char*)pstProfile_Req, sizeof(Profile_Req) ); } int GMMP_Profile_Rsp(Profile_Rsp* pstProfile_Rsp) { if(pstProfile_Rsp == NULL) { return SERVER_INFO_NOT_FOUND; } if(CheckSocket() != 0) { return SERVER_INFO_NOT_FOUND; } int nRet = ReadTCP( (char*)&pstProfile_Rsp->header , sizeof(pstProfile_Rsp->header) ); if(nRet != GMMP_SUCCESS) { return nRet; } ConvertShort cvtshort; cvtshort.sU8 = 0; memcpy(cvtshort.usShort, pstProfile_Rsp->header.usMessageLength, sizeof(pstProfile_Rsp->header.usMessageLength) ); int nReadSize = ltobs(cvtshort.sU8)- sizeof(pstProfile_Rsp->header); return ReadTCP( (char*)&pstProfile_Rsp->body, nReadSize); }