]> git.openfabrics.org - ~ardavis/dapl.git/commitdiff
add svc/pxm.c for deamon
authorArlin Davis <arlin.r.davis@intel.com>
Wed, 16 May 2012 23:06:43 +0000 (16:06 -0700)
committerArlin Davis <arlin.r.davis@intel.com>
Wed, 16 May 2012 23:06:43 +0000 (16:06 -0700)
dapl/svc/pxd.c [new file with mode: 0644]

diff --git a/dapl/svc/pxd.c b/dapl/svc/pxd.c
new file mode 100644 (file)
index 0000000..d89a13a
--- /dev/null
@@ -0,0 +1,64 @@
+/*
+ * Copyright (c) 2009-2010 Intel Corporation. All rights reserved.
+ *
+ * This software is available to you under the OpenIB.org BSD license
+ * below:
+ *
+ *     Redistribution and use in source and binary forms, with or
+ *     without modification, are permitted provided that the following
+ *     conditions are met:
+ *
+ *      - Redistributions of source code must retain the above
+ *        copyright notice, this list of conditions and the following
+ *        disclaimer.
+ *
+ *      - Redistributions in binary form must reproduce the above
+ *        copyright notice, this list of conditions and the following
+ *        disclaimer in the documentation and/or other materials
+ *        provided with the distribution.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AWV
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#if HAVE_CONFIG_H
+#  include <config.h>
+#endif /* HAVE_CONFIG_H */
+
+#include <stdio.h>
+#include <stdarg.h>
+#include <string.h>
+#include <osd.h>
+#include <arpa/inet.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <sys/time.h>
+#include <fcntl.h>
+
+i nt CDECL_FUNC main(int argc, char **argv)
+{
+        int i, op, daemon = 1;
+
+        while ((op = getopt(argc, argv, "PO:")) != -1) {
+                switch (op) {
+                case 'P':
+                        daemon = 0;
+                        break;
+                case 'O':
+                        opts_file = optarg;
+                        break;
+                default:
+                        show_usage(argv[0]);
+                        exit(1);
+                }
+        }
+       exit(0);
+}
+
+