aboutsummaryrefslogtreecommitdiffstats
path: root/gsm_call_fsm.py
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2024-03-16 20:28:41 +0100
committerHarald Welte <laforge@osmocom.org>2024-03-19 14:17:54 +0100
commitfb3b88409d56ac95bd1cfe9866d7c96a48357143 (patch)
tree79bb983086ebc6b4bdac3edebd6b1b7b0460e53b /gsm_call_fsm.py
parente3d93518bdfef13c68798c61ef92ce69fa303e8d (diff)
port over ctypeslib2
After many years without ctypeslib maintenance, there's finally a ctypeslib2 for python3.x Instead of the crude gcc2xml hack it uses libclang to generate python directly from the C. Change-Id: I9efd56623ebeabef4317356a05484a620a3a91cc
Diffstat (limited to 'gsm_call_fsm.py')
-rw-r--r--gsm_call_fsm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gsm_call_fsm.py b/gsm_call_fsm.py
index 9e2b633..3657a1a 100644
--- a/gsm_call_fsm.py
+++ b/gsm_call_fsm.py
@@ -18,7 +18,7 @@ import logging as log
from fysom import Fysom
from mncc_sock import mncc_msg, mncc_number, mncc_rtp_msg, mncc_bridge_msg, mncc_bearer_cap
-Uint32Array2 = mncc.uint32_t * 2
+Uint32Array2 = ctypes.c_uint32 * 2
class GSM48:
class BCAP_SV(object):