CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jul 2001
    Location
    Trutnov, Czech Republic
    Posts
    459

    FTP Implementation Question: Should FTP usernames be considered case sensitive?

    Do you know what's the right solution of {subject} ? I'm not sure how to implement it to FTP server, whether should I refuse username which won't case just because case of letters, or whether shouldn't I care about that.

  2. #2
    Join Date
    May 2000
    Location
    Scotland, Livingston.
    Posts
    728
    Im sure the UNIX guys would say yes. Windows guys might say no. Why not make it a configurable option for your customer to decide.

    Or check the appropriate RFC (959) and see what it says.
    Last edited by Dave McLelland; October 31st, 2003 at 05:52 PM.
    Dave Mclelland.

  3. #3
    Join Date
    Nov 2002
    Location
    Lahore, Pakistan
    Posts
    52
    you should consider where your FTP Server will be running.
    If you are writting it for windows environment then you must not check for username case senstive but if for unix flavours then you must check case senstive on username

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured