Rev 1073 | Rev 1091 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1073 | Rev 1089 | ||
---|---|---|---|
1 | #include <ipc.h> |
1 | #include <ipc.h> |
2 | #include <stdio.h> |
2 | #include <stdio.h> |
3 | #include <unistd.h> |
3 | #include <unistd.h> |
4 | #include <stdlib.h> |
4 | #include <stdlib.h> |
5 | #include <ns.h> |
5 | #include <ns.h> |
6 | #include <errno.h> |
6 | #include <errno.h> |
7 | 7 | ||
8 | static int service; |
8 | static int service; |
9 | 9 | ||
10 | int main(int argc, char **argv) |
10 | int main(int argc, char **argv) |
11 | { |
11 | { |
12 | ipc_call_t call; |
12 | ipc_call_t call; |
13 | ipc_callid_t callid; |
13 | ipc_callid_t callid; |
14 | 14 | ||
15 | ipcarg_t retval, arg1, arg2; |
15 | ipcarg_t retval, arg1, arg2; |
16 | 16 | ||
17 | printf("Name service started.\n"); |
17 | printf("NS:Name service started.\n"); |
18 | while (1) { |
18 | while (1) { |
- | 19 | call.taskid = -1; |
|
19 | callid = ipc_wait_for_call(&call, 0); |
20 | callid = ipc_wait_for_call(&call, 0); |
- | 21 | printf("NS:Call task=%llX,phone=%lX..", |
|
20 | printf("Received call from: %P..%llX\n", &call.taskid,call.taskid); |
22 | call.taskid,call.data.phoneid); |
21 | switch (IPC_GET_METHOD(call.data)) { |
23 | switch (IPC_GET_METHOD(call.data)) { |
- | 24 | case IPC_M_PHONE_HUNGUP: |
|
- | 25 | printf("Phone hung up.\n"); |
|
- | 26 | retval = 0; |
|
- | 27 | break; |
|
22 | case IPC_M_CONNECTTOME: |
28 | case IPC_M_CONNECT_TO_ME: |
23 | printf("Somebody wants to connect with phoneid %zd...accepting\n", IPC_GET_ARG3(call.data)); |
29 | printf("Somebody connecting phid=%zd.\n", IPC_GET_ARG3(call.data)); |
24 | service = IPC_GET_ARG3(call.data); |
30 | service = IPC_GET_ARG3(call.data); |
25 | retval = 0; |
31 | retval = 0; |
26 | break; |
32 | break; |
27 | case IPC_M_CONNECTMETO: |
33 | case IPC_M_CONNECT_ME_TO: |
28 | printf("Somebody wants to connect to: %zd\n", |
34 | printf("Connectmeto: %zd\n", |
29 | IPC_GET_ARG1(call.data)); |
35 | IPC_GET_ARG1(call.data)); |
30 | retval = 0; |
36 | retval = 0; |
31 | break; |
37 | break; |
32 | case NS_PING: |
38 | case NS_PING: |
33 | printf("Ping...%P %P\n", IPC_GET_ARG1(call.data), |
39 | printf("Ping...%P %P\n", IPC_GET_ARG1(call.data), |
34 | IPC_GET_ARG2(call.data)); |
40 | IPC_GET_ARG2(call.data)); |
35 | retval = 0; |
41 | retval = 0; |
36 | arg1 = 0xdead; |
42 | arg1 = 0xdead; |
37 | arg2 = 0xbeef; |
43 | arg2 = 0xbeef; |
38 | break; |
44 | break; |
- | 45 | case NS_HANGUP: |
|
- | 46 | printf("Closing connection.\n"); |
|
- | 47 | retval = EHANGUP; |
|
- | 48 | break; |
|
39 | case NS_PING_SVC: |
49 | case NS_PING_SVC: |
40 | printf("Pinging service %d\n", service); |
50 | printf("NS:Pinging service %d\n", service); |
41 | ipc_call_sync(service, NS_PING, 0xbeef, 0); |
51 | ipc_call_sync(service, NS_PING, 0xbeef, 0); |
42 | printf("Got pong\n"); |
52 | printf("NS:Got pong\n"); |
43 | break; |
53 | break; |
44 | default: |
54 | default: |
45 | printf("Unknown method: %zd\n", IPC_GET_METHOD(call.data)); |
55 | printf("Unknown method: %zd\n", IPC_GET_METHOD(call.data)); |
46 | retval = ENOENT; |
56 | retval = ENOENT; |
47 | break; |
57 | break; |
48 | } |
58 | } |
49 | ipc_answer(callid, retval, arg1, arg2); |
59 | ipc_answer(callid, retval, arg1, arg2); |
50 | } |
60 | } |
51 | } |
61 | } |
52 | 62 |