예제 #1
0
파일: db.cpp 프로젝트: opinionaided/mongo
 bool initService() {
     ServiceController::reportStatus( SERVICE_RUNNING );
     log() << "Service running" << endl;
     initAndListen( cmdLine.port );
     return true;
 }
예제 #2
0
파일: db.cpp 프로젝트: wpjunior/mongo
ExitCode initService() {
    return initAndListen(serverGlobalParams.port);
}
예제 #3
0
파일: db.cpp 프로젝트: BobWeinerJr/mongo
 void initService() {
     ntservice::reportStatus( SERVICE_RUNNING );
     log() << "Service running" << endl;
     initAndListen(serverGlobalParams.port);
 }
예제 #4
0
파일: db.cpp 프로젝트: f3lix/mongo
 bool initService() {
     ServiceController::reportStatus( SERVICE_RUNNING );
     initAndListen( cmdLine.port );
     return true;
 }
 void run() {
     initAndListen();
 }