1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-01-22 18:41:11 +00:00

KA10: Fix imp to send proper IP address to KS.

This commit is contained in:
Richard Cornwell 2023-01-11 17:15:06 -05:00
parent 545e86197f
commit 99bf0fa295

View File

@ -1316,10 +1316,10 @@ t_stat imp_eth_srv(UNIT * uptr)
#else
imp_data.rbuffer[0] = 0x4;
#endif
imp_data.rbuffer[1] = (ntohl(imp_data.ip) >> 24) & 0xff;
imp_data.rbuffer[5] = (ntohl(imp_data.ip) >> 16) & 0xff;
imp_data.rbuffer[6] = (ntohl(imp_data.ip) >> 8) & 0xff;
imp_data.rbuffer[7] = ntohl(imp_data.ip) & 0xff;
imp_data.rbuffer[1] = (ntohl(imp_data.hostip) >> 24) & 0xff;
imp_data.rbuffer[5] = (ntohl(imp_data.hostip) >> 16) & 0xff;
imp_data.rbuffer[6] = (ntohl(imp_data.hostip) >> 8) & 0xff;
imp_data.rbuffer[7] = ntohl(imp_data.hostip) & 0xff;
imp_unit[0].STATUS |= IMPIB;
imp_unit[0].IPOS = 0;
imp_unit[0].ILEN = 12*8;