Ignore:
Timestamp:
28/03/2008 22:59:28 (4 years ago)
Author:
chris
Message:

Allow configuration of the server port that the client will connect to
(bbackupd and bbackupquery).

Redesign ConfigurationVerify? to use classes instead of structs.

Use port 22011 instead of 2201 during tests, to reduce the chances of
conflicting with a running bbstored or other process.

Ignore autogen_* in svn:ignore everywhere instead of individual per-file
ignores.

Location:
box/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • box/trunk

    • Property svn:ignore
      •  

        old new  
        1111release 
        1212runtest.pl 
         13.hg 
  • box/trunk/bin/bbackupquery

    • Property svn:ignore
      •  

        old new  
        1 autogen_Documentation.cpp 
         1autogen_* 
        22Makefile 
        33makedocumentation.pl 
  • box/trunk/bin/bbackupquery/bbackupquery.cpp

    r2115 r2116  
    261261        if(!quiet) BOX_INFO("Connecting to store..."); 
    262262        SocketStreamTLS socket; 
    263         socket.Open(tlsContext, Socket::TypeINET, conf.GetKeyValue("StoreHostname").c_str(), BOX_PORT_BBSTORED); 
     263        socket.Open(tlsContext, Socket::TypeINET, 
     264                conf.GetKeyValue("StoreHostname").c_str(), 
     265                conf.GetKeyValueInt("StorePort")); 
    264266         
    265267        // 3. Make a protocol, and handshake 
Note: See TracChangeset for help on using the changeset viewer.