Skip to content

Commit

Permalink
smbj: try not to enforce signing
Browse files Browse the repository at this point in the history
  • Loading branch information
courville committed Dec 7, 2024
1 parent ccdafe2 commit 719af25
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/com/archos/filecorelibrary/smbj/SmbjUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
import java.io.IOException;
import java.net.SocketException;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.TimeUnit;

public class SmbjUtils {

Expand Down Expand Up @@ -78,7 +77,7 @@ public static SmbjUtils peekInstance() {
private SmbjUtils(Context context) {
mContext = context;
log.debug("SmbjUtils: initializing contexts");
smbConfig = SmbConfig.builder().withSecurityProvider(new BCSecurityProvider())
smbConfig = SmbConfig.builder().withSecurityProvider(new BCSecurityProvider()).withMultiProtocolNegotiate(true).withSigningRequired(false)
.build();
}

Expand Down

0 comments on commit 719af25

Please sign in to comment.