summaryrefslogtreecommitdiffstats
path: root/data/mnet/GP10/Host/Common_To_Host/cc/A_Handover_Complete_Msg.h
blob: 29efb12067d1ae11bd537663651ebac7a4a2b012 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// *******************************************************************
//
// (c) Copyright Cisco 2001
// All Rights Reserved
//
// *******************************************************************
//
// Version     : 1.0
// Status      : Under development
// File        : ($CC)/src/A_Handover_Complete_Msg.h
// Author(s)   : Tai Yu
// Description : 
//
// FILE DESCRIPTION:
//
// 
// CHANGE HISTORY:
//
//		Date		Description
//		----------	--------------------------------------------
//		2001-05-15	First Incarnation
//
// =================================================================

#ifndef A_HANDOVER_COMPLETE_MSG_H
#define A_HANDOVER_COMPLETE_MSG_H

#include "CC\A_Handover_Ie.h"

// 3.2.1.40		Handover Complete

typedef struct {
	// 3.2.2.1 Mandatory
	A_Ie_Message_Type_t						msgType;
	// 3.2.2.22 Optional
	A_Ie_RR_Cause_t							rrCause;
} A_Handover_Complete_t;

#include "CC\A_Handover_Common.h"

extern A_Result_t
A_EncodeHandoverComplete(
	A_Handover_Complete_t &handoverComplete,
	unsigned char *buffer, 
	int &length
	);

extern A_Result_t 
A_DecodeHandoverComplete(
	unsigned char *buffer, 
	int length,
	A_Handover_Complete_t &handoverComplete
	);

#endif // A_HANDOVER_COMPLETE_MSG_H