Skip to content

Commit

Permalink
/X 5.2.4
Browse files Browse the repository at this point in the history
Express
1) Fix to the code that grabs the connected users IP/Hostname that was causing guru on some machines
2) Update version to 5.2.4
  • Loading branch information
dmcoles authored Apr 13, 2020
1 parent e5b9c0d commit 05318d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions express.e
Original file line number Diff line number Diff line change
Expand Up @@ -8083,7 +8083,7 @@ PROC checkIncomingCall()
StrCopy(connectString,'CONNECT 19200')
n:=SIZEOF sockaddr_in
GetPeerName(telnetSocket,peeraddr,{n})
hostent:=GetHostByAddr(telnetSocket,peeraddr.sin_addr,AF_INET)
hostent:=GetHostByAddr(peeraddr.sin_addr,4,AF_INET)
StrCopy(hostName,hostent.h_name,255)
StringF(hostIP,'\d.\d.\d.\d',Shr(peeraddr.sin_addr AND $ff000000,24),Shr(peeraddr.sin_addr AND $ff0000,16),Shr(peeraddr.sin_addr AND $ff00,8),peeraddr.sin_addr AND $ff)
JUMP go3
Expand Down Expand Up @@ -28165,8 +28165,8 @@ PROC main() HANDLE
DEF oldWinPtr
DEF proc: PTR TO process

StrCopy(expressVer,'v5.2.3',ALL)
StrCopy(expressDate,'06-Mar-2020',ALL)
StrCopy(expressVer,'v5.2.4',ALL)
StrCopy(expressDate,'13-Apr-2020',ALL)

nodeStart:=getSystemTime()

Expand Down

0 comments on commit 05318d2

Please sign in to comment.