Changeset 5 for oscpack/trunk/TODO

Show
Ignore:
Timestamp:
08/25/05 14:57:43 (3 years ago)
Author:
ross
Message:

commiting most recent pre-svn oscpack version. Main change is new networking classes with new unified UdpSocket? class, support for listening to multiple sockets. New IpEndpointName? class for refering to endpoints by name, ip address etc.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • oscpack/trunk/TODO

    r1 r5  
    11TODO: 
    22 
    3     - fix UDPPacketListenerPort to close the thread correctly (this applies 
    4         to both the posix and Win32 versions. 
     3    - consider adding ListenerThread class to support old seperate thread listener functionality, something like: 
     4 
     5        class UdpSocketListenerThread{ 
     6        public: 
     7            UdpSocketListenerThread( UdpSocket& socket, Listener *listener ); 
     8            UdpSocketListenerThread( UdpSocketReceiveMultiplexer *mux ); 
     9            ~UdpSocketListenerThread(); 
     10 
     11            void Run(); 
     12            void Stop(); 
     13        }; 
     14 
     15 
    516 
    617    - provide some kind of automatic endianness configuration (hopefully there