char* createMSG(uint8_t i,uint16_t port) {
char *buff;
buff = (char*) calloc(1,6);
uint8_t id, tmp;
tmp = 0;
id = 2;
memcpy(buff, &id, sizeof(uint8_t));
memcpy(buff+1, &i, sizeof(uint8_t));
memcpy(buff+2, &port, sizeof(uint16_t));
memcpy(buff+2+2, &tmp, sizeof(uint16_t));
memcpy(buff+2+2+1, &tmp, sizeof(uint16_t));
printf("created SV_CON_REP: id: %d accept: %d port %d\n",*buff,*(buff+1),* (buff+2)); return buff;
}
I need to copy the port in an uint32_t. It prints that port is Null.
EDIT Function call: char* tmp; uint8_t i; i = 9; uint16_t port; port = 1234; tmp = createMSG(i,port);
Output: created MSG: id: 2 accept: 0 port 0
I was copy this function, but under windows.
call:
printf result:
(1234 = 0x04d2, where 0xd2=210)
you still not copy call & printf result, but your own comment