Changeset 109 for branches/follower/wiz810mj/src/demo
- Timestamp:
- 12/11/07 03:14:44 (13 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/follower/wiz810mj/src/demo/WizDemo4/WizDemo4.pde
r108 r109 226 226 NetworkConnection(uint16_t port); // TODO: Add UDP, TCP choice? 227 227 228 void listen(); // TODO: Return a useful value?228 int listen(); 229 229 int isConnected(); 230 230 byte read(); … … 244 244 } 245 245 246 voidNetworkConnection::listen() { // TODO: Make private or protected?246 int NetworkConnection::listen() { // TODO: Make private or protected? 247 247 /* 248 248 249 249 */ 250 ::listen(_socket); // TODO: Use C++ namespaces for the driver functions?250 return !!::listen(_socket); // TODO: Use C++ namespaces for the driver functions? 251 251 } 252 252