diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 23:28:10 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 23:28:10 -0600 |
commit | aea462f777680f3dd68968a32b309aa069b75a98 (patch) | |
tree | c453a883e48e19ffc238fb46a6599c62fa3470d6 /lib | |
parent | be64ff0e7e45df0fcf594951d5297e1bee95339e (diff) | |
download | ulab-aea462f777680f3dd68968a32b309aa069b75a98.tar.gz ulab-aea462f777680f3dd68968a32b309aa069b75a98.zip |
Add ability to set maximum terminal service users in group
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libtqtrla/src/tqtrla.cpp | 2 | ||||
-rw-r--r-- | lib/libtqtrla/src/tqtrla.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/lib/libtqtrla/src/tqtrla.cpp b/lib/libtqtrla/src/tqtrla.cpp index 50cb025..3c00bcf 100644 --- a/lib/libtqtrla/src/tqtrla.cpp +++ b/lib/libtqtrla/src/tqtrla.cpp @@ -633,6 +633,7 @@ TQDataStream &operator<<( TQDataStream &s, const TerminalServiceAuthGroupType &a s << agt.protocolVersion; s << agt.groupName; s << agt.allowedServerNames; + s << agt.maximumActiveSessionCount; return s; } @@ -649,6 +650,7 @@ TQDataStream &operator>>( TQDataStream &s, TerminalServiceAuthGroupType &agt ) s >> agt.protocolVersion; s >> agt.groupName; s >> agt.allowedServerNames; + s >> agt.maximumActiveSessionCount; return s; } diff --git a/lib/libtqtrla/src/tqtrla.h b/lib/libtqtrla/src/tqtrla.h index b649c4d..4bca5bd 100644 --- a/lib/libtqtrla/src/tqtrla.h +++ b/lib/libtqtrla/src/tqtrla.h @@ -253,6 +253,7 @@ class TerminalServiceAuthGroupType TQ_UINT32 protocolVersion; TQString groupName; TQStringList allowedServerNames; + TQ_UINT32 maximumActiveSessionCount; }; #ifndef QT_NO_DATASTREAM |