Add verbose, and fix cursor movement problem

This commit is contained in:
Keith Winstein
2011-08-14 00:09:52 -04:00
parent 90687448e0
commit cc07d4cf17
5 changed files with 21 additions and 6 deletions
+4
View File
@@ -109,6 +109,8 @@ namespace Network {
FragmentAssembly fragments;
bool verbose;
public:
Transport( MyState &initial_state, RemoteState &initial_remote );
Transport( MyState &initial_state, RemoteState &initial_remote,
@@ -132,6 +134,8 @@ namespace Network {
uint64_t get_remote_state_num( void ) { return received_states.back().num; }
int fd( void ) { return connection.fd(); }
void set_verbose( void ) { verbose = true; }
};
}