CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Hybrid View

  1. #1
    Join Date
    Oct 2010
    Posts
    67

    Connection Performance

    I wonder if I handle a socket in a dll, is it going to be slower than if I handle it at the application itself? Thanks.

  2. #2
    Join Date
    Nov 2002
    Location
    California
    Posts
    4,556

    Re: Connection Performance

    DLLs are mapped into each application's memory space, so unless you are contemplating something unusual (like the /DELAYLOAD switch), I can't think of any reason that it might be slower.

    Note that Winsock is itself a DLL, and is mapped into the application's memory space when the application calls WSAStartup().

    Mike

  3. #3
    Join Date
    Oct 2010
    Posts
    67

    Re: Connection Performance

    Thanks.

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