41 lines
1.2 KiB
C
41 lines
1.2 KiB
C
#ifndef USER_GROUP_CONFIG_H_
|
|
#define USER_GROUP_CONFIG_H_
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
#include <arpa/inet.h>
|
|
#include <sys/ioctl.h>
|
|
#include <net/if.h>
|
|
#include <cjson/cJSON.h>
|
|
|
|
|
|
#include "../../../../common/configm/configmapi.h"
|
|
#include "../../../../common/rpc/rpc_common.h"
|
|
#include "../../../../../Product/user/user_manager/user_group.h"
|
|
|
|
|
|
|
|
|
|
/* user group config */
|
|
ret_code usergroup_config_chk(uint source, uint config_type,
|
|
pointer input, int input_len,
|
|
pointer output, int *output_len);
|
|
|
|
ret_code usergroup_config_proc(uint source, uint config_type,
|
|
pointer input, int input_len,
|
|
pointer output, int *output_len);
|
|
|
|
ret_code usergroup_config_get(uint source,
|
|
pointer input, int input_len,
|
|
pointer output, int *output_len);
|
|
|
|
ret_code usergroup_config_get_all(uint source, uint64 config_id,
|
|
pointer output, short *single_len,
|
|
int *output_len);
|
|
|
|
#endif |