~ubuntu-branches/ubuntu/wily/sflphone/wily

« back to all changes in this revision

Viewing changes to daemon/src/registration_states.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2015-01-07 14:51:16 UTC
  • mfrom: (4.3.5 sid)
  • Revision ID: package-import@ubuntu.com-20150107145116-yxnafinf4lrdvrmx
Tags: 1.4.1-0.1ubuntu1
* Merge with Debian, remaining changes:
 - Drop soprano, nepomuk build-dep
* Drop ubuntu patches, now upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
#define REGISTRATION_STATES_H_
34
34
 
35
35
/** Contains all the Registration states for an account can be in */
36
 
typedef enum {
 
36
enum class RegistrationState {
37
37
    UNREGISTERED,
38
38
    TRYING,
39
39
    REGISTERED,
43
43
    ERROR_HOST,
44
44
    ERROR_SERVICE_UNAVAILABLE,
45
45
    ERROR_EXIST_STUN,
46
 
    ERROR_NOT_ACCEPTABLE,
47
 
    NUMBER_OF_STATES
48
 
} RegistrationState;
 
46
    ERROR_NOT_ACCEPTABLE
 
47
};
49
48
 
50
49
#endif // REGISTRATION_STATES_H_