gss: pass GSS_C_NO_OID name type through to mechanism
[heimdal.git] / lib / ipc / ts.c
blob3ba5d65556416ae7060c1f11da9872e1448ce0eb
1 /*
2 * Copyright (c) 2009 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
4 * All rights reserved.
6 * Portions Copyright (c) 2009 Apple Inc. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the Institute nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
36 #include "config.h"
37 #include <stdio.h>
38 #include <stdlib.h>
39 #include <krb5-types.h>
40 #include <heim-ipc.h>
41 #include <getarg.h>
42 #include <roken.h>
44 static int help_flag;
45 static int version_flag;
47 static struct getargs args[] = {
48 { "help", 'h', arg_flag, &help_flag, NULL, NULL },
49 { "version", 'v', arg_flag, &version_flag, NULL, NULL }
52 static int num_args = sizeof(args) / sizeof(args[0]);
54 static void
55 usage(int ret)
57 arg_printusage (args, num_args, NULL, "");
58 exit (ret);
61 static void
62 test_service(void *ctx, const heim_idata *req,
63 const heim_icred cred,
64 heim_ipc_complete complete,
65 heim_sipc_call cctx)
67 heim_idata rep;
68 char buf[128];
70 printf("got request via %s\n", (const char *)ctx);
71 snprintf(buf, sizeof(buf), "Hello back via %s\n", (const char *)ctx);
72 rep.data = buf;
73 rep.length = strlen(buf);
74 (*complete)(cctx, 0, &rep);
78 int
79 main(int argc, char **argv)
81 heim_sipc u;
82 int optidx = 0;
84 setprogname(argv[0]);
86 if (getarg(args, num_args, argc, argv, &optidx))
87 usage(1);
89 if (help_flag)
90 usage(0);
92 if (version_flag) {
93 print_version(NULL);
94 exit(0);
97 #if __APPLE__
99 heim_sipc mach;
100 heim_sipc_launchd_mach_init("org.h5l.test-ipc",
101 test_service, "MACH", &mach);
103 #endif
104 heim_sipc_service_unix("org.h5l.test-ipc",
105 test_service, "UNIX", &u);
106 #ifdef HAVE_DOOR_CREATE
108 heim_sipc door;
109 heim_sipc_service_door("org.h5l.test-ipc",
110 test_service, "DOOR", &door);
112 #endif
113 heim_ipc_main();
115 return 0;