Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jami-libclient
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
savoirfairelinux
jami-libclient
Commits
5ec29a0b
Commit
5ec29a0b
authored
Jan 28, 2013
by
Emmanuel Lepage Vallee
Browse files
Options
Downloads
Patches
Plain Diff
[ #19639 ] Add proxy server config fields
parent
7bd9c41e
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/account.h
+4
-0
4 additions, 0 deletions
src/account.h
with
4 additions
and
0 deletions
src/account.h
+
4
−
0
View file @
5ec29a0b
...
...
@@ -113,6 +113,8 @@ class LIB_EXPORT Account : public QObject {
QString
getAccountUsername
()
const
{
return
getAccountDetail
(
ACCOUNT_USERNAME
)
;}
///Return the account mailbox address
QString
getAccountMailbox
()
const
{
return
getAccountDetail
(
ACCOUNT_MAILBOX
)
;}
///Return the account mailbox address
QString
getAccountProxy
()
const
{
return
getAccountDetail
(
ACCOUNT_ROUTE
)
;}
///
bool
isAccountDisplaySasOnce
()
const
{
return
(
getAccountDetail
(
ACCOUNT_DISPLAY_SAS_ONCE
)
==
"true"
)
?
1
:
0
;}
///Return the account security fallback
...
...
@@ -201,6 +203,8 @@ class LIB_EXPORT Account : public QObject {
void
setAccountUsername
(
QString
detail
){
setAccountDetail
(
ACCOUNT_USERNAME
,
detail
);}
///Set the account mailbox, usually a number, but can be anything
void
setAccountMailbox
(
QString
detail
){
setAccountDetail
(
ACCOUNT_MAILBOX
,
detail
);}
///Set the account mailbox, usually a number, but can be anything
void
setAccountProxy
(
QString
detail
){
setAccountDetail
(
ACCOUNT_ROUTE
,
detail
);}
///Set the main credential password
void
setAccountPassword
(
QString
detail
){
setAccountDetail
(
ACCOUNT_PASSWORD
,
detail
);}
///Set the TLS (encryption) password
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment