Changeset 2116 for box/trunk/bin/bbackupd
- Timestamp:
- 28/03/2008 22:59:28 (4 years ago)
- Location:
- box/trunk
- Files:
-
- 5 edited
-
. (modified) (1 prop)
-
bin/bbackupd (modified) (1 prop)
-
bin/bbackupd/BackupClientContext.cpp (modified) (3 diffs)
-
bin/bbackupd/BackupClientContext.h (modified) (2 diffs)
-
bin/bbackupd/BackupDaemon.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
box/trunk
- Property svn:ignore
-
old new 11 11 release 12 12 runtest.pl 13 .hg
-
- Property svn:ignore
-
box/trunk/bin/bbackupd
- Property svn:ignore
-
old new 1 1 Makefile 2 2 bbackupd-config 3 autogen_*
-
- Property svn:ignore
-
box/trunk/bin/bbackupd/BackupClientContext.cpp
r2115 r2116 45 45 TLSContext &rTLSContext, 46 46 const std::string &rHostname, 47 int Port, 47 48 int32_t AccountNumber, 48 49 bool ExtendedLogging, … … 53 54 mrTLSContext(rTLSContext), 54 55 mHostname(rHostname), 56 mPort(Port), 55 57 mAccountNumber(AccountNumber), 56 58 mpSocket(0), … … 130 132 131 133 // Connect! 132 mpSocket->Open(mrTLSContext, Socket::TypeINET, mHostname.c_str(), BOX_PORT_BBSTORED); 134 mpSocket->Open(mrTLSContext, Socket::TypeINET, 135 mHostname.c_str(), mPort); 133 136 134 137 // And create a procotol object -
box/trunk/bin/bbackupd/BackupClientContext.h
r1191 r2116 42 42 TLSContext &rTLSContext, 43 43 const std::string &rHostname, 44 int32_t Port, 44 45 int32_t AccountNumber, 45 46 bool ExtendedLogging, … … 202 203 TLSContext &mrTLSContext; 203 204 std::string mHostname; 205 int mPort; 204 206 int32_t mAccountNumber; 205 207 SocketStreamTLS *mpSocket; -
box/trunk/bin/bbackupd/BackupDaemon.cpp
r2115 r2116 959 959 tlsContext, 960 960 conf.GetKeyValue("StoreHostname"), 961 conf.GetKeyValueInt("StorePort"), 961 962 conf.GetKeyValueInt("AccountNumber"), 962 963 conf.GetKeyValueBool("ExtendedLogging"),
Note: See TracChangeset
for help on using the changeset viewer.
