aboutsummaryrefslogtreecommitdiff
path: root/src/state.h
blob: df5bd6e12bf1f94ae45f36abe44a8406f95d81ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef STATE_H_
#define STATE_H_

char state_set_ssh_destination(const char * dest);
const char * state_get_ssh_destination(void);
char state_set_bastion_username(const char * name);
const char * state_get_bastion_username(void);
char state_set_session_id(const int id);
int state_get_session_id(void);
void state_clean(void);

#endif