Skip to content
Snippets Groups Projects
common.h 1.24 KiB
Newer Older
  • Learn to ignore specific revisions
  • Jakob Olsson's avatar
    Jakob Olsson committed
    #ifndef COMMON_H
    #define COMMON_H
    
    
    #include <stdlib.h>
    #include <stdio.h>
    #include <stdbool.h>
    #include <unistd.h>
    #include <getopt.h>
    #include <sys/types.h>
    #include <sys/stat.h>
    #include <fcntl.h>
    #include <signal.h>
    #include <time.h>
    #include <limits.h>
    #include <libubox/list.h>
    
    
    #include "libmobile.h"
    
    #include <json-c/json.h>
    #include <string.h>
    #include <libubox/blobmsg.h>
    #include <libubus.h>
    
    /**
    
     *
     * Prints a json_object pointer's json structure to ubus.
     *
     * Parameters:
     * 		parsed_response - A struct json_object pointer to json structure to be printed to ubus.
     * 		ctx - Ubus context containing connection.
     * 		req - Information for from the ubus request.
     *
     * Returns:
     * 		0 On success.
     * 		-1 On failure.
     */
    
    int print_to_ubus(struct json_object *parsed_response, struct ubus_context *ctx, struct ubus_request_data *req);
    
    
    /**
     * Function: json_to_blob
     *
     * Parses a json_object pointer to a corresponding blob buffer.
     *
     * Parameters:
     * 		response - json_object pointer to be replicated in a blob buffer.
     * 		bb - The blob buffer to hold the results.
     *
     * Returns:
     *		Blob buffer containing the replicated json_object.
     */
    struct blob_buf json_to_blob(struct json_object *response, struct blob_buf bb);
    
    Jakob Olsson's avatar
    Jakob Olsson committed
    #endif