aboutsummaryrefslogtreecommitdiff
path: root/src/state.h
blob: 0ab70bc80ca1e945ca09bb47537d8b534c228403 (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 unsigned long long id);
unsigned long long state_get_session_id(void);
void state_clean(void);

#endif