The branch, master has been updated
       via  e139f19 s3: add suport for SMB3_10 and SMB3_11 protocols in 
smbstatus
      from  f1f47ac python: Remove uuid module

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit e139f19327a2d958efd4cf940ba3ae6b7956a46a
Author: Ralph Wuerthner <[email protected]>
Date:   Fri Aug 28 14:42:32 2015 +0200

    s3: add suport for SMB3_10 and SMB3_11 protocols in smbstatus
    
    BUG: https://bugzilla.samba.org/show_bug.cgi?id=11472
    
    Signed-off-by: Ralph Wuerthner <[email protected]>
    Reviewed-by: Stefan Metzmacher <[email protected]>
    Reviewed-by: Volker Lendecke <[email protected]>
    
    Autobuild-User(master): Jeremy Allison <[email protected]>
    Autobuild-Date(master): Sat Aug 29 07:05:10 CEST 2015 on sn-devel-104

-----------------------------------------------------------------------

Summary of changes:
 source3/lib/sessionid_tdb.c | 6 ++++++
 1 file changed, 6 insertions(+)


Changeset truncated at 500 lines:

diff --git a/source3/lib/sessionid_tdb.c b/source3/lib/sessionid_tdb.c
index fd6cf75..68f9c43 100644
--- a/source3/lib/sessionid_tdb.c
+++ b/source3/lib/sessionid_tdb.c
@@ -67,6 +67,12 @@ static int sessionid_traverse_read_fn(struct 
smbXsrv_session_global0 *global,
        case SMB3_DIALECT_REVISION_302:
                fstrcpy(session.protocol_ver, "SMB3_02");
                break;
+       case SMB3_DIALECT_REVISION_310:
+               fstrcpy(session.protocol_ver, "SMB3_10");
+               break;
+       case SMB3_DIALECT_REVISION_311:
+               fstrcpy(session.protocol_ver, "SMB3_11");
+               break;
        default:
                fstr_sprintf(session.protocol_ver, "Unknown (0x%04x)",
                             global->connection_dialect);


-- 
Samba Shared Repository

Reply via email to