Rev 2636 | Rev 2660 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2636 | Rev 2637 | ||
|---|---|---|---|
| Line 567... | Line 567... | ||
| 567 | /** Ask destination to do a callback connection. |
567 | /** Ask destination to do a callback connection. |
| 568 | * |
568 | * |
| 569 | * @param phoneid Phone handle used for contacting the other side. |
569 | * @param phoneid Phone handle used for contacting the other side. |
| 570 | * @param arg1 Service-defined argument. |
570 | * @param arg1 Service-defined argument. |
| 571 | * @param arg2 Service-defined argument. |
571 | * @param arg2 Service-defined argument. |
| - | 572 | * @param arg3 Service-defined argument. |
|
| 572 | * @param phonehash Storage where the library will store an opaque |
573 | * @param phonehash Storage where the library will store an opaque |
| 573 | * identifier of the phone that will be used for incoming |
574 | * identifier of the phone that will be used for incoming |
| 574 | * calls. This identifier can be used for connection |
575 | * calls. This identifier can be used for connection |
| 575 | * tracking. |
576 | * tracking. |
| 576 | * |
577 | * |
| 577 | * @return Zero on success or a negative error code. |
578 | * @return Zero on success or a negative error code. |
| 578 | */ |
579 | */ |
| 579 | int ipc_connect_to_me(int phoneid, int arg1, int arg2, ipcarg_t *phonehash) |
580 | int ipc_connect_to_me(int phoneid, int arg1, int arg2, int arg3, |
| - | 581 | ipcarg_t *phonehash) |
|
| 580 | { |
582 | { |
| 581 | return ipc_call_sync_2_3(phoneid, IPC_M_CONNECT_TO_ME, arg1, arg2, |
583 | return ipc_call_sync_3_5(phoneid, IPC_M_CONNECT_TO_ME, arg1, arg2, |
| 582 | NULL, NULL, phonehash); |
584 | arg3, NULL, NULL, NULL, NULL, phonehash); |
| 583 | } |
585 | } |
| 584 | 586 | ||
| 585 | /** Ask through phone for a new connection to some service. |
587 | /** Ask through phone for a new connection to some service. |
| 586 | * |
588 | * |
| 587 | * @param phoneid Phone handle used for contacting the other side. |
589 | * @param phoneid Phone handle used for contacting the other side. |