summaryrefslogtreecommitdiff
path: root/cesar/interface/fcall/inc
diff options
context:
space:
mode:
authorburet2008-05-20 15:30:03 +0000
committerburet2008-05-20 15:30:03 +0000
commitae4673ba8f32c8fb0085a7b2f33541f4549d7311 (patch)
tree4fa36e81057ec17d06c0bccade92d8f2b0baf759 /cesar/interface/fcall/inc
parentfd8bb15a1bbf73683803ee1086a8cd6ca398b1ee (diff)
Maximus proto: develop a functional test using pipes between the python script and the proto station.
(Still some little/big endian issues to enhance) git-svn-id: svn+ssh://pessac/svn/cesar/trunk@2030 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cesar/interface/fcall/inc')
-rw-r--r--cesar/interface/fcall/inc/context.h1
-rw-r--r--cesar/interface/fcall/inc/interface_fcall.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/cesar/interface/fcall/inc/context.h b/cesar/interface/fcall/inc/context.h
index 2a902c4d81..e997af40e8 100644
--- a/cesar/interface/fcall/inc/context.h
+++ b/cesar/interface/fcall/inc/context.h
@@ -23,6 +23,7 @@ typedef void (*interface_fcall_send_done_message_cb_t) (void *user_data, u8 *mes
typedef struct interface_fcall_t
{
fcall_ctx_t *fcall_ctx; /** pointer to fcall context */
+ probe_ctx_t *probe_ctx; /** pointer to probe context */
interface_fcall_send_message_cb_t send_cb; /** callback function to call when interface fcall module needs to send a message */
interface_fcall_send_done_message_cb_t send_done_cb; /** callback function to call when interface fcall module needs to release a buffer */
void *user_data; /** data to provide on callback function */
diff --git a/cesar/interface/fcall/inc/interface_fcall.h b/cesar/interface/fcall/inc/interface_fcall.h
index 06fea15260..1a87ccb969 100644
--- a/cesar/interface/fcall/inc/interface_fcall.h
+++ b/cesar/interface/fcall/inc/interface_fcall.h
@@ -14,7 +14,7 @@
*
*/
-#define INTERFACE_FCALL_OFFSET 20 /* mme header without vlan tag (19) + sub-module type (1) */
+#define INTERFACE_FCALL_PAYLOAD_OFFSET 22 /* mme header without vlan tag (19) + sub-module type (1) + payload length (2) */
#define INTERFACE_FCALL_MMTYPE 0xABCD // TBD
/**