mirror of
https://dev.iopsys.eu/bbf/icwmp.git
synced 2025-12-10 07:44:41 +01:00
89 lines
2.5 KiB
C
89 lines
2.5 KiB
C
/*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Copyright (C) 2013-2020 iopsys Software Solutions AB
|
|
* Author Omar Kallel <omar.kallel@pivasoftware.com>
|
|
*
|
|
*/
|
|
|
|
#ifndef SESSION_H_
|
|
#define SESSION_H_
|
|
|
|
#include <microxml.h>
|
|
#include "common.h"
|
|
|
|
extern struct uloop_timeout retry_session_timer;
|
|
extern pthread_mutex_t start_session_mutext;
|
|
|
|
typedef struct session_status {
|
|
time_t last_start_time;
|
|
time_t last_end_time;
|
|
int last_status;
|
|
time_t next_periodic;
|
|
time_t next_retry;
|
|
unsigned int success_session;
|
|
unsigned int failure_session;
|
|
} session_status;
|
|
|
|
typedef struct session {
|
|
struct list_head head_rpc_cpe;
|
|
struct list_head head_rpc_acs;
|
|
struct list_head events;
|
|
struct session_status session_status;
|
|
mxml_node_t *tree_in;
|
|
mxml_node_t *tree_out;
|
|
mxml_node_t *body_in;
|
|
bool hold_request;
|
|
bool digest_auth;
|
|
int fault_code;
|
|
int error;
|
|
} session;
|
|
|
|
enum end_session_enum
|
|
{
|
|
END_SESSION_REBOOT = 1,
|
|
END_SESSION_EXTERNAL_ACTION = 1 << 1,
|
|
END_SESSION_RELOAD = 1 << 2,
|
|
END_SESSION_FACTORY_RESET = 1 << 3,
|
|
END_SESSION_IPPING_DIAGNOSTIC = 1 << 4,
|
|
END_SESSION_DOWNLOAD_DIAGNOSTIC = 1 << 5,
|
|
END_SESSION_UPLOAD_DIAGNOSTIC = 1 << 6,
|
|
END_SESSION_X_FACTORY_RESET_SOFT = 1 << 7,
|
|
END_SESSION_NSLOOKUP_DIAGNOSTIC = 1 << 8,
|
|
END_SESSION_TRACEROUTE_DIAGNOSTIC = 1 << 9,
|
|
END_SESSION_UDPECHO_DIAGNOSTIC = 1 << 10,
|
|
END_SESSION_SERVERSELECTION_DIAGNOSTIC = 1 << 11,
|
|
END_SESSION_SET_NOTIFICATION_UPDATE = 1 << 12,
|
|
END_SESSION_RESTART_SERVICES = 1 << 13,
|
|
END_SESSION_INIT_NOTIFY = 1 << 14
|
|
};
|
|
|
|
enum enum_session_status
|
|
{
|
|
SESSION_WAITING,
|
|
SESSION_RUNNING,
|
|
SESSION_FAILURE,
|
|
SESSION_SUCCESS
|
|
};
|
|
|
|
extern unsigned int end_session_flag;
|
|
|
|
void cwmp_set_end_session(unsigned int flag);
|
|
struct rpc *cwmp_add_session_rpc_cpe(int type);
|
|
struct rpc *cwmp_add_session_rpc_acs(int type);
|
|
struct rpc *cwmp_add_session_rpc_acs_head(int type);
|
|
int cwmp_session_rpc_destructor(struct rpc *rpc);
|
|
void trigger_cwmp_session_timer();
|
|
void initiate_cwmp_periodic_session_feature();
|
|
int run_session_end_func(void);
|
|
void cwmp_schedule_session(struct uloop_timeout *timeout);
|
|
void start_cwmp_session();
|
|
int create_cwmp_session_structure();
|
|
int clean_cwmp_session_structure();
|
|
void set_cwmp_session_status(int status, int retry_time);
|
|
int cwmp_session_init();
|
|
int cwmp_session_exit();
|
|
#endif /* SRC_INC_SESSION_H_ */
|