Ignore:
Timestamp:
Jan 15, 2017, 9:08:12 AM (9 years ago)
Author:
Paul Smedley
Message:

Add support for enabling/disabling encryption - fixes #289

Location:
branches/client-3.0/src/rc
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/client-3.0/src/rc/rc.dlg

    r931 r1006  
    3030                        WS_VISIBLE
    3131        ENTRYFIELD      "", ENT_MASTER, 147, 60, 90, 8, ES_MARGIN
    32         LTEXT           "Supports EA", LBL_EASUPPORT, 195, 130, 52, 10,
     32        LTEXT           "Supports EA", LBL_EASUPPORT, 190, 130, 52, 10,
    3333                        DT_WORDBREAK
    3434        AUTOCHECKBOX    "", CHK_EASUPPORT, 180, 132, 10, 10, WS_GROUP
    35         LTEXT           "Supports KRB5", LBL_KRB5SUPPORT, 195, 140, 52, 10,
     35        LTEXT           "Supports KRB5", LBL_KRB5SUPPORT, 190, 140, 52, 10,
    3636                        DT_WORDBREAK
    3737        AUTOCHECKBOX    "", CHK_KRB5SUPPORT, 180, 142, 10, 10, WS_GROUP
    38         LTEXT           "Support NTLMv1", LBL_NTLMv1SUPPORT, 195, 150, 52, 10,
     38        LTEXT           "Support NTLMv1", LBL_NTLMv1SUPPORT, 190, 150, 52, 10,
    3939                        DT_WORDBREAK
    4040        AUTOCHECKBOX    "", CHK_NTLMv1SUPPORT, 180, 152, 10, 10, WS_GROUP
     41        LTEXT           "Support Encryption", LBL_ENCRYPTIONSUPPORT, 190, 160, 58, 10,
     42                        DT_WORDBREAK
     43        AUTOCHECKBOX    "", CHK_ENCRYPTIONSUPPORT, 180, 162, 10, 10, WS_GROUP
    4144        PUSHBUTTON      "Cancel", DID_CANCEL, 7, 6, 56, 14
    4245                        PRESPARAMS PP_FONTNAMESIZE, "9.WarpSans Bold"
  • branches/client-3.0/src/rc/rc.h

    r931 r1006  
    2727#define LBL_NTLMv1SUPPORT               1030
    2828#define CHK_NTLMv1SUPPORT               1031
     29#define LBL_ENCRYPTIONSUPPORT               1032
     30#define CHK_ENCRYPTIONSUPPORT               1033
    2931#define LBL_CACHETIMEOUT        1014
    3032#define SPIN_CACHETIMEOUT       1015
  • branches/client-3.0/src/rc/rc.rc_

    r935 r1006  
    4747   "    master - name of master server or master workgroup\r\n"
    4848   "    mastertype - 0 if 'master' is the name of master server, 1 if 'master' is the name of master workgroup\r\n"
     49   "    encryption - 0 to not support encryption (default), 1 to support\r\n"
     50   "    NTLMv1 auth support - 0 to not support NTLMv1 authentication (default), 1 to support\r\n"
     51   "    krb5support - 0 to not support kerberos authentication, 1 to support\r\n"
    4952   "    easupport - 0 to not support EA, 1 to support\r\n"
    50    "    krb5support - 0 to not support kerberos authentication, 1 to support\r\n"
    51    "    NTLMv1 auth support - 0 to not support NTLMv1 authentication (default), 1 to support\r\n"
    5253   "\r\n"
    5354}
     
    136137RCDATA (DLG_ID + 13)
    137138{
     139    CHK_ENCRYPTIONSUPPORT, PARMTYPE_INT, 0L, 1L, "encryptionsupport", "%d", 0L
     140}
     141
     142RCDATA (DLG_ID + 14)
     143{
    138144    1
    139145}
Note: See TracChangeset for help on using the changeset viewer.