/****************************************************************************** ############################################################################### # Copyright (c) [2017-2020] [ICT/CAS] # # Licensed under the ORAN Software License v1.0 (License) # ############################################################################### ******************************************************************************/ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include /* for the printf() function */ /* includes required to create a fake IP packet */ #include /* for the IPv4 header */ #include /* for the strlen() */ #include /* for the rohc_buf_*() functions */ /* includes required to use the compression part of the ROHC library */ #include /* required by time() */ #include /* for rohc_comp_*() functions */ struct rohc_comp * create_compressor(); bool compress_with_callback(struct rohc_comp *const compressor,struct rohc_buf uncomp_packet,struct rohc_buf *const packet);