Projects
osmocom:master
osmo-pcu
Log In
Username
Password
Error getting diff: tar:
×
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 162
View file
commit_325104b5ac2269e8f55675e24e2021701dcb4202.txt
Added
View file
commit_56993345f2665be445e1d8a9f35cf73a631519f9.txt
Deleted
View file
osmo-pcu_1.5.1.6.56993.dsc -> osmo-pcu_1.5.1.7.32510.dsc
Changed
@@ -2,7 +2,7 @@ Source: osmo-pcu Binary: osmo-pcu, osmo-pcu-dbg, osmo-pcu-doc Architecture: any all -Version: 1.5.1.6.56993 +Version: 1.5.1.7.32510 Maintainer: Osmocom team <openbsc@lists.osmocom.org> Homepage: http://osmocom.org/projects/osmopcu Standards-Version: 3.9.8 @@ -14,8 +14,8 @@ osmo-pcu-dbg deb debug extra arch=any osmo-pcu-doc deb doc optional arch=all Checksums-Sha1: - 7311bc18e979c617cc3dae10f3903e890d15fd52 433312 osmo-pcu_1.5.1.6.56993.tar.xz + 8c6f99bdb613e617d30cc208bffa7d2ef1a88f7b 433372 osmo-pcu_1.5.1.7.32510.tar.xz Checksums-Sha256: - 6ed6927afbf6a23ce70e88a565cf934762e3d00ec9db825696f7fd7d30884d40 433312 osmo-pcu_1.5.1.6.56993.tar.xz + e6dfefce5ba28ba4ca3c855c961739cf401d1ab0e7cc164459e943f36710d590 433372 osmo-pcu_1.5.1.7.32510.tar.xz Files: - 9b3a1b68dfbeed38bb7911d0db2d14d2 433312 osmo-pcu_1.5.1.6.56993.tar.xz + 7e2e7be8b3d037d9add3019989d65f24 433372 osmo-pcu_1.5.1.7.32510.tar.xz
View file
osmo-pcu_1.5.1.6.56993.tar.xz/.tarball-version -> osmo-pcu_1.5.1.7.32510.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -1.5.1.6-56993 +1.5.1.7-32510
View file
osmo-pcu_1.5.1.6.56993.tar.xz/debian/changelog -> osmo-pcu_1.5.1.7.32510.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -osmo-pcu (1.5.1.6.56993) unstable; urgency=medium +osmo-pcu (1.5.1.7.32510) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom master feed - -- Osmocom OBS scripts <info@osmocom.org> Wed, 05 Mar 2025 18:46:06 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Thu, 13 Mar 2025 18:47:20 +0000 osmo-pcu (1.5.1) unstable; urgency=medium
View file
osmo-pcu_1.5.1.6.56993.tar.xz/src/encoding.cpp -> osmo-pcu_1.5.1.7.32510.tar.xz/src/encoding.cpp
Changed
@@ -602,7 +602,7 @@ Dynamic_Allocation_t *da; /* RLC/MAC control block without the optional RLC/MAC control header */ - block->PAYLOAD_TYPE = 0x01; // Payload Type + block->PAYLOAD_TYPE = PAYLOAD_TYPE_CTRL_NO_OPT_OCTET; // Payload Type block->RRBP = rrbp; // RRBP (e.g. N+13) block->SP = poll; // RRBP field is valid block->USF = 0x00; // Uplink state flag @@ -720,7 +720,7 @@ uint8_t tn; - block->PAYLOAD_TYPE = 0x1; // RLC/MAC control block that does not include the optional octets of the RLC/MAC control header + block->PAYLOAD_TYPE = PAYLOAD_TYPE_CTRL_NO_OPT_OCTET; // RLC/MAC control block that does not include the optional octets of the RLC/MAC control header block->RRBP = rrbp; // 0: N+13 block->SP = poll; // RRBP field is valid block->USF = 0x0; // Uplink state flag @@ -1759,7 +1759,7 @@ uint8_t container_idx, PNCDContainer_t *container) { - block->PAYLOAD_TYPE = 0x1; // RLC/MAC control block that does not include the optional octets of the RLC/MAC control header + block->PAYLOAD_TYPE = PAYLOAD_TYPE_CTRL_NO_OPT_OCTET; // RLC/MAC control block that does not include the optional octets of the RLC/MAC control header block->RRBP = 0; // 0: N+13 block->SP = 0; // RRBP field is not valid block->USF = 0x0; // Uplink state flag @@ -1784,7 +1784,7 @@ uint16_t arfcn, uint8_t bsic, uint8_t container_id) { - block->PAYLOAD_TYPE = 0x1; // RLC/MAC control block that does not include the optional octets of the RLC/MAC control header + block->PAYLOAD_TYPE = PAYLOAD_TYPE_CTRL_NO_OPT_OCTET; // RLC/MAC control block that does not include the optional octets of the RLC/MAC control header block->RRBP = rrbp; // RRBP (e.g. N+13) block->SP = poll; // RRBP field is valid? block->USF = 0x0; // Uplink state flag
View file
osmo-pcu_1.5.1.6.56993.tar.xz/src/gsm_rlcmac.c -> osmo-pcu_1.5.1.7.32510.tar.xz/src/gsm_rlcmac.c
Changed
@@ -36,12 +36,6 @@ #include <arpa/inet.h> #include <gprs_debug.h> -/* Payload type as defined in TS 44.060 / 10.4.7 */ -#define PAYLOAD_TYPE_DATA 0 -#define PAYLOAD_TYPE_CTRL_NO_OPT_OCTET 1 -#define PAYLOAD_TYPE_CTRL_OPT_OCTET 2 -#define PAYLOAD_TYPE_RESERVED 3 - /* CSN1 structures */ /*(not all parts of CSN_DESCR structure are always initialized.)*/ static const
View file
osmo-pcu_1.5.1.6.56993.tar.xz/src/gsm_rlcmac.h -> osmo-pcu_1.5.1.7.32510.tar.xz/src/gsm_rlcmac.h
Changed
@@ -48,6 +48,12 @@ typedef guint8 N51_t; typedef guint8 N26_t; +/* Payload type as defined in TS 44.060 / 10.4.7 */ +#define PAYLOAD_TYPE_DATA 0 +#define PAYLOAD_TYPE_CTRL_NO_OPT_OCTET 1 +#define PAYLOAD_TYPE_CTRL_OPT_OCTET 2 +#define PAYLOAD_TYPE_RESERVED 3 + /* Starting Time IE as specified in 04.08 */ typedef struct {
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.