• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.0.25b/source/smbd/

Lines Matching defs:junction

703 				struct junction_map *junction,
726 DEBUG(10,("ref count = %u\n",junction->referral_count));
729 VERSION2_REFERRAL_SIZE * junction->referral_count;
735 reply_size = REFERRAL_HEADER_SIZE + VERSION2_REFERRAL_SIZE*junction->referral_count +
740 for(i=0;i<junction->referral_count;i++) {
741 DEBUG(10,("referral %u : %s\n",i,junction->referral_list[i].alternate_path));
742 reply_size += (strlen(junction->referral_list[i].alternate_path)+1)*2;
762 SSVAL(pdata,2,junction->referral_count); /* number of referral in this pkt */
771 for(i=0;i<junction->referral_count;i++) {
772 struct referral* ref = &junction->referral_list[i];
804 struct junction_map *junction,
826 uni_reqpathoffset1 = REFERRAL_HEADER_SIZE + VERSION3_REFERRAL_SIZE * junction->referral_count;
830 for(i=0;i<junction->referral_count;i++) {
831 DEBUG(10,("referral %u : %s\n",i,junction->referral_list[i].alternate_path));
832 reply_size += (strlen(junction->referral_list[i].alternate_path)+1)*2;
844 SSVAL(pdata,2,junction->referral_count); /* number of referral */
856 for(i=0;i<junction->referral_count;i++) {
857 struct referral* ref = &(junction->referral_list[i]);
898 struct junction_map junction;
911 ZERO_STRUCT(junction);
913 /* get the junction entry */
932 *pstatus = get_referred_path(ctx, pathnamep, &junction, &consumedcnt, &self_referral);
946 for(i=0;i<junction.referral_count;i++)
947 dbgtext(" %s",junction.referral_list[i].alternate_path);
964 reply_size = setup_ver2_dfs_referral(pathnamep, ppdata, &junction,
968 reply_size = setup_ver3_dfs_referral(pathnamep, ppdata, &junction,
993 Creates a junction structure from a DFS pathname
1031 Forms a valid Unix pathname from the junction
1175 /* form a junction for the msdfs root - convention
1212 DEBUG(2, ("ran out of MSDFS junction slots"));