[101] | 1 | /*
|
---|
| 2 | * TOPPERS ECHONET Lite Communication Middleware
|
---|
| 3 | *
|
---|
| 4 | * Copyright (C) 2015 Cores Co., Ltd. Japan
|
---|
| 5 | *
|
---|
| 6 | * ãLì ÒÍCȺÌ(1)`(4)Ìðð½·êÉÀèC{\tgEF
|
---|
| 7 | * Ai{\tgEFAðüϵ½àÌðÜÞDȺ¯¶jðgpE¡»Eü
|
---|
| 8 | * ÏEÄzziȺCpÆÄÔj·é±Æð³Åø·éD
|
---|
| 9 | * (1) {\tgEFAð\[XR[hÌ`Åp·éêÉÍCãLÌì
|
---|
| 10 | * \¦C±Ìpð¨æÑºLÌ³ÛØKèªC»ÌÜÜÌ`Å\[
|
---|
| 11 | * XR[hÉÜÜêĢ鱯D
|
---|
| 12 | * (2) {\tgEFAðCCu`®ÈÇC¼Ì\tgEFAJÉg
|
---|
| 13 | * pÅ«é`ÅÄzz·éêÉÍCÄzzɺ¤hL
|
---|
| 14 | gip
|
---|
| 15 | * Ò}j
|
---|
| 16 | AÈÇjÉCãLÌì \¦C±Ìpð¨æÑºL
|
---|
| 17 | * Ì³ÛØKèðfÚ·é±ÆD
|
---|
| 18 | * (3) {\tgEFAðC@íÉgÝÞÈÇC¼Ì\tgEFAJÉg
|
---|
| 19 | * pūȢ`ÅÄzz·éêÉÍCÌ¢¸ê©Ìðð½·±
|
---|
| 20 | * ÆD
|
---|
| 21 | * (a) Äzzɺ¤hL
|
---|
| 22 | gipÒ}j
|
---|
| 23 | AÈÇjÉCãLÌ
|
---|
| 24 | * ì \¦C±Ìpð¨æÑºLÌ³ÛØKèðfÚ·é±ÆD
|
---|
| 25 | * (b) ÄzzÌ`ÔðCÊÉèßéû@ÉæÁÄCTOPPERSvWFNgÉ
|
---|
| 26 | * ñ·é±ÆD
|
---|
| 27 | * (4) {\tgEFAÌpÉæè¼ÚIܽÍÔÚIɶ¶é¢©Èé¹
|
---|
| 28 | * Q©çàCãLì Ò¨æÑTOPPERSvWFNgðÆÓ·é±ÆD
|
---|
| 29 | * ܽC{\tgEFAÌ[UܽÍGh[U©çÌ¢©Èé
|
---|
| 30 | * RÉîÿ©çàCãLì Ò¨æÑTOPPERSvWFNgð
|
---|
| 31 | * ÆÓ·é±ÆD
|
---|
| 32 | *
|
---|
| 33 | * {\tgEFAÍC³ÛØÅñ³êÄ¢éàÌÅ éDãLì Ò¨
|
---|
| 34 | * æÑTOPPERSvWFNgÍC{\tgEFAÉÖµÄCÁèÌgpÚI
|
---|
| 35 | * ÉηéK«àÜßÄC¢©ÈéÛØàsíÈ¢DܽC{\tgEF
|
---|
| 36 | * AÌpÉæè¼ÚIܽÍÔÚIɶ¶½¢©Èé¹QÉÖµÄàC»
|
---|
| 37 | * ÌÓCðíÈ¢D
|
---|
| 38 | *
|
---|
| 39 | * @(#) $Id: wamp_callee.c 101 2015-06-02 15:37:23Z coas-nagasima $
|
---|
| 40 | */
|
---|
| 41 |
|
---|
| 42 | #include <string.h>
|
---|
| 43 | #include "wamp.h"
|
---|
| 44 | #include "wamp_callee.h"
|
---|
| 45 |
|
---|
| 46 | #ifndef _MSC_VER
|
---|
| 47 | #ifndef strncpy_s
|
---|
| 48 | #define strncpy_s(dst, dsz, src, sz) strncpy(dst, src, sz)
|
---|
| 49 | #endif
|
---|
| 50 | #endif
|
---|
| 51 |
|
---|
| 52 | void wamp_callee_registered(wamp_callee_t *callee)
|
---|
| 53 | {
|
---|
| 54 | }
|
---|
| 55 |
|
---|
| 56 | void wamp_callee_registered_request_id(wamp_callee_t *s, const char *value)
|
---|
| 57 | {
|
---|
| 58 | }
|
---|
| 59 |
|
---|
| 60 | void wamp_callee_registered_registration_id(wamp_callee_t *s, const char *value)
|
---|
| 61 | {
|
---|
| 62 | }
|
---|
| 63 |
|
---|
| 64 | void wamp_callee_registered_close(struct wamp_state *s)
|
---|
| 65 | {
|
---|
| 66 | }
|
---|
| 67 |
|
---|
| 68 | void wamp_callee_unregistered(wamp_callee_t *callee)
|
---|
| 69 | {
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | void wamp_callee_unregistered_request_id(wamp_callee_t *s, const char *value)
|
---|
| 73 | {
|
---|
| 74 | }
|
---|
| 75 |
|
---|
| 76 | void wamp_callee_unregistered_close(struct wamp_state *s)
|
---|
| 77 | {
|
---|
| 78 | }
|
---|
| 79 |
|
---|
| 80 | void wamp_callee_invocation(wamp_callee_t *callee)
|
---|
| 81 | {
|
---|
| 82 | }
|
---|
| 83 |
|
---|
| 84 | void wamp_callee_invocation_request_id(wamp_callee_t *s, const char *value)
|
---|
| 85 | {
|
---|
| 86 | }
|
---|
| 87 |
|
---|
| 88 | void wamp_callee_invocation_registration_id(wamp_callee_t *s, const char *value)
|
---|
| 89 | {
|
---|
| 90 | }
|
---|
| 91 |
|
---|
| 92 | void wamp_callee_invocation_details(wamp_callee_t *s, const char *value)
|
---|
| 93 | {
|
---|
| 94 | }
|
---|
| 95 |
|
---|
| 96 | void wamp_callee_invocation_details_param(wamp_callee_t *s, jsonsl_action_t action,
|
---|
| 97 | struct jsonsl_state_st *state, const char *buf)
|
---|
| 98 | {
|
---|
| 99 | }
|
---|
| 100 |
|
---|
| 101 | void wamp_callee_invocation_arguments(wamp_callee_t *s, const char *value)
|
---|
| 102 | {
|
---|
| 103 | }
|
---|
| 104 |
|
---|
| 105 | void wamp_callee_invocation_arguments_param(wamp_callee_t *s, jsonsl_action_t action,
|
---|
| 106 | struct jsonsl_state_st *state, const char *buf)
|
---|
| 107 | {
|
---|
| 108 | }
|
---|
| 109 |
|
---|
| 110 | void wamp_callee_invocation_argumentskw(wamp_callee_t *s, const char *value)
|
---|
| 111 | {
|
---|
| 112 | }
|
---|
| 113 |
|
---|
| 114 | void wamp_callee_invocation_argumentskw_param(wamp_callee_t *s, jsonsl_action_t action,
|
---|
| 115 | struct jsonsl_state_st *state, const char *buf)
|
---|
| 116 | {
|
---|
| 117 | }
|
---|
| 118 |
|
---|
| 119 | void wamp_callee_interrupt(wamp_callee_t *callee)
|
---|
| 120 | {
|
---|
| 121 | }
|
---|
| 122 |
|
---|
| 123 | void wamp_callee_interrupt_request_id(wamp_callee_t *s, const char *value)
|
---|
| 124 | {
|
---|
| 125 | }
|
---|
| 126 |
|
---|
| 127 | void wamp_callee_interrupt_options(wamp_callee_t *s, const char *value)
|
---|
| 128 | {
|
---|
| 129 | }
|
---|
| 130 |
|
---|
| 131 | void wamp_callee_interrupt_options_param(wamp_callee_t *s, jsonsl_action_t action,
|
---|
| 132 | struct jsonsl_state_st *state, const char *buf)
|
---|
| 133 | {
|
---|
| 134 | }
|
---|
| 135 |
|
---|
| 136 | void wamp_callee_invocation_close(struct wamp_state *s)
|
---|
| 137 | {
|
---|
| 138 | }
|
---|
| 139 |
|
---|
| 140 | void wamp_callee_interrupt_close(struct wamp_state *s)
|
---|
| 141 | {
|
---|
| 142 | }
|
---|