• Cedric Roux's avatar
    nr pdcp: improve readability of integrity checking · a323195a
    Cedric Roux authored
    Introduce the structure nr_pdcp_integrity_data_t and adapt code to use it.
    
    Note: in nr_pdcp_sdu_t we keep the 'count' variable (which is also present
    in nr_pdcp_integrity_data_t). They represent the same value, but 'count'
    in nr_pdcp_integrity_data_t is to be specifically used for integrity while
    the other one has other uses, so it's better to keep it.
    a323195a
nr_pdcp_integrity_data.h 1.27 KB
/*
 * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The OpenAirInterface Software Alliance licenses this file to You under
 * the OAI Public License, Version 1.1  (the "License"); you may not use this file
 * except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.openairinterface.org/?page_id=698
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *-------------------------------------------------------------------------------
 * For more information about the OpenAirInterface (OAI) Software Alliance:
 *      contact@openairinterface.org
 */

#ifndef _NR_PDCP_INTEGRITY_DATA_H_
#define _NR_PDCP_INTEGRITY_DATA_H_

#include <stdint.h>

typedef struct {
  uint32_t count;
  uint8_t mac[4];
  uint8_t header_size;
  uint8_t header[3];
} nr_pdcp_integrity_data_t;

#endif /* _NR_PDCP_INTEGRITY_DATA_H_ */