checkpoint
This commit is contained in:
parent
e277e6e74a
commit
a0b25b9d4a
24
notes
24
notes
|
@ -12,11 +12,23 @@ hangup if invalid
|
||||||
query info -->
|
query info -->
|
||||||
<-- info (size)
|
<-- info (size)
|
||||||
|
|
||||||
|
---
|
||||||
|
need config file and parser
|
||||||
|
remove hard coded debugging stuff (in server.cpp)
|
||||||
|
|
||||||
---
|
---
|
||||||
win32:
|
win32:
|
||||||
need to support window stations
|
need to support window stations
|
||||||
login screen on NT is a separate window station
|
login screen on NT is a separate window station
|
||||||
handle display changes
|
handle display changes
|
||||||
|
provide taskbar icon
|
||||||
|
|
||||||
|
win32 dll:
|
||||||
|
should make this as small as possible
|
||||||
|
don't use standard libraries
|
||||||
|
use custom _DllMainCRTStartup(); just call DllMain() from it.
|
||||||
|
use /MERGE linker switch to merge sections
|
||||||
|
should use mutex on all public functions
|
||||||
|
|
||||||
---
|
---
|
||||||
not handling international characters
|
not handling international characters
|
||||||
|
@ -191,10 +203,9 @@ keyboard hook problems
|
||||||
thinks the key is always down.
|
thinks the key is always down.
|
||||||
|
|
||||||
---
|
---
|
||||||
server asserts if two clients with same name try to connect
|
try to determine keyboard quirks automatically
|
||||||
should simply refuse second client
|
in particular, set the half-duplex flags
|
||||||
also not reaping disconnects very fast
|
maybe KBD extension will help determine this
|
||||||
investigate slowness
|
|
||||||
|
|
||||||
---
|
---
|
||||||
blown assert:
|
blown assert:
|
||||||
|
@ -205,11 +216,6 @@ blown assert:
|
||||||
must flush queued events when jumping to primary
|
must flush queued events when jumping to primary
|
||||||
check for other things to do when jumping to primary
|
check for other things to do when jumping to primary
|
||||||
|
|
||||||
---
|
|
||||||
not detecting disconnect when remote side crashes
|
|
||||||
is there some socket flag to help with this?
|
|
||||||
should catch signal when closing console window and close nicely
|
|
||||||
|
|
||||||
---
|
---
|
||||||
sending same clipboard repeatedly from win32 server
|
sending same clipboard repeatedly from win32 server
|
||||||
can we detect no change?
|
can we detect no change?
|
||||||
|
|
Loading…
Reference in New Issue