mirror of
				https://github.com/open5gs/open5gs.git
				synced 2025-11-04 05:53:18 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			719 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			719 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2017 Lev Walkin <vlm@lionet.info>.
 | 
						|
 * All rights reserved.
 | 
						|
 * Redistribution and modifications are permitted subject to BSD license.
 | 
						|
 */
 | 
						|
#include <asn_internal.h>
 | 
						|
#include <INTEGER.h>
 | 
						|
 | 
						|
asn_enc_rval_t
 | 
						|
INTEGER_encode_jer(const asn_TYPE_descriptor_t *td, const void *sptr,
 | 
						|
                   int ilevel, enum jer_encoder_flags_e flags,
 | 
						|
                   asn_app_consume_bytes_f *cb, void *app_key) {
 | 
						|
    const INTEGER_t *st = (const INTEGER_t *)sptr;
 | 
						|
    asn_enc_rval_t er = {0,0,0};
 | 
						|
 | 
						|
    (void)ilevel;
 | 
						|
    (void)flags;
 | 
						|
 | 
						|
    if(!st || !st->buf)
 | 
						|
        ASN__ENCODE_FAILED;
 | 
						|
 | 
						|
    er.encoded = INTEGER__dump(td, st, cb, app_key, 1);
 | 
						|
    if(er.encoded < 0) ASN__ENCODE_FAILED;
 | 
						|
 | 
						|
    ASN__ENCODED_OK(er);
 | 
						|
}
 |