/* $Id: main.c,v 1.5 2011/01/02 20:30:38 khorben Exp $ */ /* Copyright (c) 2011 Pierre Pronchery */ /* This file is part of DeforaOS Network Directory */ /* This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 3 of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include #include #include "directory.h" #include "../config.h" /* usage */ static int _usage(void) { fputs("Usage: " PACKAGE " [-L|-R]\n", stderr); return 1; } /* main */ int main(int argc, char * argv[]) { int o; AppServerOptions options = ASO_LOCAL; Event * event; Directory * directory; while((o = getopt(argc, argv, "LR")) != -1) switch(o) { case 'L': options = ASO_LOCAL; break; case 'R': options = ASO_REMOTE; break; default: return _usage(); } if((event = event_new()) == NULL) return error_print(PACKAGE) ? 2 : 2; if((directory = directory_new(options, event)) == NULL) { error_print(PACKAGE); event_delete(event); return 2; } event_loop(event); event_delete(event); return 0; }