1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-02 03:52:49 -05:00

Add reception support for MacTCP. Now I can log in over TELNET, just about.

There are still lots of things to fix, like urgent data or the fact that
everything seems to happen one keypress too late, but this is an important
milestone.

[originally from svn r2458]
This commit is contained in:
Ben Harris
2003-01-05 12:53:38 +00:00
parent a7ba273b5b
commit 30bff47c89
4 changed files with 87 additions and 10 deletions

View File

@ -1,4 +1,4 @@
/* $Id: mac.c,v 1.18 2003/01/05 10:52:56 ben Exp $ */
/* $Id: mac.c,v 1.19 2003/01/05 12:53:38 ben Exp $ */
/*
* Copyright (c) 1999 Ben Harris
* All rights reserved.
@ -213,6 +213,7 @@ static void mac_eventloop(void) {
mac_adjustcursor(cursrgn);
if (gotevent)
mac_event(&event);
mactcp_poll();
}
DisposeRgn(cursrgn);
}