/* * call-seq: * conn.bind(dn=nil, password=nil, method=LDAP::LDAP_AUTH_SIMPLE) => self * conn.bind(dn=nil, password=nil, method=LDAP::LDAP_AUTH_SIMPLE) * { |conn| } => self * * Bind an LDAP connection, using the DN, +dn+, the credential, +password+, * and the bind method, +method+. If a block is given, +self+ is yielded to * the block. */ VALUE rb_ldap_sslconn_bind_s (int argc, VALUE argv[], VALUE self) { return rb_ldap_sslconn_bind_f (argc, argv, self, rb_ldap_conn_bind_s); }