double `htons` replaced by `ntohs` for diff-indian compilers
This commit is contained in:
parent
d33b7e135a
commit
8b0e2c05bf
|
@ -157,7 +157,7 @@ int multicastTerminal(struct middleware_arg* arg){
|
|||
}else{
|
||||
strcpy(request.addr, SERV_HOST);
|
||||
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;
|
||||
}
|
||||
|
||||
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;
|
||||
|
|
Loading…
Reference in New Issue