diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-11-02 11:29:19 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-11-02 11:29:19 +0000 |
commit | 80153a5bb5d3b41101e6bd6755b61fd0e57fadbc (patch) | |
tree | 6a2989723396348d509b63466bf53023f4f82739 /src/connectionmanager.h | |
parent | 54ef2750aef0c64df56daff50af7719f85017c33 (diff) | |
download | libbu++-80153a5bb5d3b41101e6bd6755b61fd0e57fadbc.tar.gz libbu++-80153a5bb5d3b41101e6bd6755b61fd0e57fadbc.tar.bz2 libbu++-80153a5bb5d3b41101e6bd6755b61fd0e57fadbc.tar.xz libbu++-80153a5bb5d3b41101e6bd6755b61fd0e57fadbc.zip |
Added the new features that you need to make the connection manager, protocols,
and the connection monitor work in two-way-mode. Effectively you should be able
to write systems that both serve and initiate connections, and only write one
protocol.
Diffstat (limited to 'src/connectionmanager.h')
-rw-r--r-- | src/connectionmanager.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/connectionmanager.h b/src/connectionmanager.h index 85eb7ad..23d059a 100644 --- a/src/connectionmanager.h +++ b/src/connectionmanager.h | |||
@@ -93,6 +93,8 @@ public: | |||
93 | */ | 93 | */ |
94 | void setConnectionMonitor( ConnectionMonitor *pNewMonitor ); | 94 | void setConnectionMonitor( ConnectionMonitor *pNewMonitor ); |
95 | 95 | ||
96 | void connect( const char *lpAddress, int nPort, int nProtocolPort ); | ||
97 | |||
96 | private: | 98 | private: |
97 | /** | 99 | /** |
98 | * Take care of the work of actually accepting a connection. This will | 100 | * Take care of the work of actually accepting a connection. This will |