diff options
author | Max <msuraev@sysmocom.de> | 2017-01-02 14:10:30 +0100 |
---|---|---|
committer | Max <msuraev@sysmocom.de> | 2017-01-06 10:21:11 +0000 |
commit | dbd3a92f70325b7a02d0a637929732f297fb2612 (patch) | |
tree | b89e89d4bf066323a010a7ee5415ca6cc25e74ef /include | |
parent | 0bee65c0d89f81a4b90aa3d484016d9ba680dd46 (diff) |
Add parsed TLV helpers from OsmoBTS
Add functions to copy and merge parsed TLV structures from OsmoBTS.
Change-Id: Ieaaaed19da9c069fe451faa53d24c5b84d7d5615
Diffstat (limited to 'include')
-rw-r--r-- | include/osmocom/gsm/tlv.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/osmocom/gsm/tlv.h b/include/osmocom/gsm/tlv.h index cf09969d..701fe688 100644 --- a/include/osmocom/gsm/tlv.h +++ b/include/osmocom/gsm/tlv.h @@ -436,6 +436,8 @@ static inline uint32_t tlvp_val32_unal(const struct tlv_parsed *tp, int pos) return res; } +struct tlv_parsed *osmo_tlvp_copy(const struct tlv_parsed *tp_orig, void *ctx); +int osmo_tlvp_merge(struct tlv_parsed *dst, const struct tlv_parsed *src); int osmo_shift_v_fixed(uint8_t **data, size_t *data_len, size_t len, uint8_t **value); int osmo_match_shift_tv_fixed(uint8_t **data, size_t *data_len, |