supported_protocols  483 source3/smbd/negprot.c } supported_protocols[] = {
supported_protocols  655 source3/smbd/negprot.c 	for (protocol = 0; supported_protocols[protocol].proto_name; protocol++) {
supported_protocols  657 source3/smbd/negprot.c 		if ((supported_protocols[protocol].protocol_level <= lp_maxprotocol()) &&
supported_protocols  658 source3/smbd/negprot.c 				(supported_protocols[protocol].protocol_level >= lp_minprotocol()))
supported_protocols  660 source3/smbd/negprot.c 				if (strequal(cliprotos[i],supported_protocols[protocol].proto_name))
supported_protocols  669 source3/smbd/negprot.c 		fstrcpy(remote_proto,supported_protocols[protocol].short_name);
supported_protocols  671 source3/smbd/negprot.c 		supported_protocols[protocol].proto_reply_fn(req, choice);
supported_protocols  672 source3/smbd/negprot.c 		DEBUG(3,("Selected protocol %s\n",supported_protocols[protocol].proto_name));
supported_protocols  470 source4/smb_server/smb/negprot.c } supported_protocols[] = {
supported_protocols  523 source4/smb_server/smb/negprot.c 	for (protocol = 0; supported_protocols[protocol].proto_name; protocol++) {
supported_protocols  526 source4/smb_server/smb/negprot.c 		if (supported_protocols[protocol].protocol_level > lp_srv_maxprotocol(req->smb_conn->lp_ctx)) 
supported_protocols  528 source4/smb_server/smb/negprot.c 		if (supported_protocols[protocol].protocol_level < lp_srv_minprotocol(req->smb_conn->lp_ctx)) 
supported_protocols  532 source4/smb_server/smb/negprot.c 			if (strcmp(supported_protocols[protocol].proto_name, protos[i]) != 0) continue;
supported_protocols  534 source4/smb_server/smb/negprot.c 			supported_protocols[protocol].proto_reply_fn(req, i);
supported_protocols  536 source4/smb_server/smb/negprot.c 				i, supported_protocols[protocol].proto_name));