Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NodeStatusRequest (1.2 sec)

  1. src/main/java/jcifs/smb1/netbios/NodeStatusRequest.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.netbios;
    
    class NodeStatusRequest extends NameServicePacket {
    
        NodeStatusRequest( Name name ) {
            questionName = name;
            questionType = NBSTAT;
            isRecurDesired = false;
            isBroadcast = false;
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NodeStatusRequest.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.netbios;
    
    
    import jcifs.Configuration;
    
    
    class NodeStatusRequest extends NameServicePacket {
    
        NodeStatusRequest ( Configuration cfg, Name name ) {
            super(cfg);
            this.questionName = name;
            this.questionType = NBSTAT;
            this.isRecurDesired = false;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.9K bytes
    - Viewed (0)
Back to top