The upgrade from mIRC 7.36 to 7.38 appears to have changed something in the sockopen command - a script I wrote to pull API data from my ISP works fine on 7.36 but can't successfully start an https connection on 7.38.

The "tekcheck" alias in the code below should run without feedback and does on 7.36, but on 7.38 you'll see a [10101] Host disconnected error. Could anyone figure out what changed?

Thanks!

Code:
alias tekCheck {
  sockopen -e tekapi api.teksavvy.com 443
}

on 1:sockopen:tekapi: {
  if ($sockerr > 0) echo -t Socket Error on open: $sockerr message: $sock($sockname).wsmsg
  sockclose $sockname
}

Last edited by Corey_; 12/01/15 09:10 PM.