- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 995 for smb1 (0.02 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComBlankResponse.java
*/ package jcifs.internal.smb1.com; import jcifs.Configuration; import jcifs.internal.smb1.ServerMessageBlock; /** * SMB1 blank response message. * * This is a generic response message for SMB commands that don't * return specific data in their response. */ public class SmbComBlankResponse extends ServerMessageBlock { /** * Creates a new blank SMB1 response. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.net.MalformedURLException; import java.net.URL; import java.net.UnknownHostException; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
import java.util.ListIterator; import jcifs.smb1.UniAddress; import jcifs.smb1.netbios.Name; import jcifs.smb1.netbios.NbtAddress; import jcifs.smb1.netbios.NbtException; import jcifs.smb1.netbios.SessionRequestPacket; import jcifs.smb1.netbios.SessionServicePacket; import jcifs.smb1.util.Encdec; import jcifs.smb1.util.Hexdump; import jcifs.smb1.util.LogStream; import jcifs.smb1.util.transport.Request;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.8K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/HandlerTest.java
if (pkgs == null) { System.setProperty("java.protocol.handler.pkgs", "jcifs.smb1"); } else if (!pkgs.contains("jcifs.smb1")) { System.setProperty("java.protocol.handler.pkgs", pkgs + "|jcifs.smb1"); } } @Test @DisplayName("getDefaultPort returns SMB default port 445") void testGetDefaultPort() { // Act int port = handler.getDefaultPort();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Handler.java
*/ package jcifs.smb1.smb1; import java.io.IOException; import java.net.URL; import java.net.URLConnection; import java.net.URLStreamHandler; /** * URL handler for SMB1 protocol URLs. */ public class Handler extends URLStreamHandler { static final URLStreamHandler SMB_HANDLER = new Handler(); /** * Default constructor for SMB1 URL handler. */ public Handler() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SambaHelperTest.java
} public void test_getAccountId_smb1_basic() throws SmbException { // Note: SMB1 SID testing is limited due to interface constraints // This test verifies the method exists and handles the SMB1 SID parameter type ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { @Override public String getSmbAvailableSidTypes() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComWriteAndXResponse.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal.smb1.com; import jcifs.Configuration; import jcifs.internal.smb1.AndXServerMessageBlock; import jcifs.internal.util.SMBUtil; /** * SMB1 Write AndX Response message. * * This response contains information about the write operation, * including the number of bytes actually written.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtTransQuerySecurityDescResponse.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; import java.io.IOException; class NtTransQuerySecurityDescResponse extends SmbComNtTransactionResponse { SecurityDescriptor securityDescriptor; NtTransQuerySecurityDescResponse() { }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/https/HandlerTest.java
import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Nested; import org.junit.jupiter.api.Test; /** * Test suite for jcifs.smb1.https.Handler class. * Tests HTTPS URL stream handler functionality with NTLM authentication support. */ @DisplayName("SMB1 HTTPS Handler Tests") class HandlerTest { private Handler handler; @BeforeEach void setUp() { handler = new Handler();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Info.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; interface Info { int getAttributes(); long getCreateTime(); long getLastWriteTime(); long getSize();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 995 bytes - Viewed (0)