-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paths10-context.h
More file actions
81 lines (38 loc) · 1.41 KB
/
s10-context.h
File metadata and controls
81 lines (38 loc) · 1.41 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
* This would be the header for the S10 interface context in the Open5GS project.
* The actual content and structure would depend on the specific requirements
* and design of the S10 interface within the Open5GS framework.
*/
#ifndef S10_CONTEXT_H
#define S10_CONTEXT_H
#include "context.h"
#include "ogs-app.h"
#include "ogs-gtp.h"
#ifdef __cplusplus
extern "C" {
#endif
extern int __s10_log_domain;
#undef OGS_LOG_DOMAIN
#define OGS_LOG_DOMAIN __s10_log_domain
#define GTPC_CONTEXT_REQUEST 130
#define GTPC_CONTEXT_RESPONSE 131
#define GTPC_CONTEXT_ACKNOWLEDGE 132
#define GTPC_FORWARD_RELOCATION_REQUEST 133
#define GTPC_FORWARD_RELOCATION_RESPONSE 134
#define GTPC_FORWARD_RELOCATION_COMPLETE_NOTIFICATION 135
#define GTPC_FORWARD_RELOCATION_COMPLETE_ACKNOWLEDGE 136
typedef struct s10_context_s {
// Definitions for the S10 context structure would go here.
// This would typically include hash tables, lists, and other
// data structures to manage the state and configuration of the S10 interface.
} s10_context_t;
void s10_context_init(void);
void s10_context_final(void);
s10_context_t *s10_self(void);
// Additional functions for managing the S10 context would be declared here.
// This could include functions for session management, configuration parsing,
// and any other utility functions required by the S10 interface.
#ifdef __cplusplus
}
#endif
#endif /* S10_CONTEXT_H */