double `htons` replaced by `ntohs` for diff-indian compilers

This commit is contained in:
xdrm-brackets 2017-04-18 19:40:36 +02:00
parent d33b7e135a
commit 8b0e2c05bf
1 changed files with 2 additions and 2 deletions

View File

@ -157,7 +157,7 @@ int multicastTerminal(struct middleware_arg* arg){
}else{ }else{
strcpy(request.addr, SERV_HOST); strcpy(request.addr, SERV_HOST);
request.port = comInfo.sin_port; request.port = comInfo.sin_port;
if( DEBUGMOD&SCK ) printf("{%s}{udp_com} socket opened on %s:%d\n", arg->entity, request.addr, htons(request.port)); if( DEBUGMOD&SCK ) printf("{%s}{udp_com} socket opened on %s:%d\n", arg->entity, request.addr, ntohs(request.port));
} }
} }
@ -178,7 +178,7 @@ int multicastTerminal(struct middleware_arg* arg){
return -2; return -2;
} }
printf("{%s} sent: bind_header{flag = %d; addr = '%s'; port = %d}\n", arg->entity, (int) request.flags, request.addr, htons(request.port)); printf("{%s} sent: bind_header{flag = %d; addr = '%s'; port = %d}\n", arg->entity, (int) request.flags, request.addr, ntohs(request.port));
return 0; return 0;