Home | History | Annotate | Download | only in patch
      1 --- ../../src-unpatched/trunk/org/jivesoftware/smack/SASLAuthentication.java	2009-12-07 00:03:46.000000000 +0100
      2 +++ org/jivesoftware/smack/SASLAuthentication.java	2009-12-07 00:05:46.000000000 +0100
      3 @@ -91,11 +91,11 @@
      4          registerSASLMechanism("PLAIN", SASLPlainMechanism.class);
      5          registerSASLMechanism("ANONYMOUS", SASLAnonymous.class);
      6  
      7 -        supportSASLMechanism("GSSAPI",0);
      8 -        supportSASLMechanism("DIGEST-MD5",1);
      9 -        supportSASLMechanism("CRAM-MD5",2);
     10 -        supportSASLMechanism("PLAIN",3);
     11 -        supportSASLMechanism("ANONYMOUS",4);
     12 +//        supportSASLMechanism("GSSAPI",0);
     13 +        supportSASLMechanism("DIGEST-MD5",0);
     14 +//        supportSASLMechanism("CRAM-MD5",2);
     15 +        supportSASLMechanism("PLAIN",1);
     16 +        supportSASLMechanism("ANONYMOUS",2);
     17  
     18      }
     19  
     20 
     21