CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Doron Moraz

Page 1 of 5 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    1,161

    Re: Programing for the LAN - Help

    Hi Iraq,

    Yes



    Take a look at:
    http://en.wikipedia.org/wiki/Winsock
    http://en.wikipedia.org/wiki/Transmission_Control_Protocol
    http://msdn.microsoft.com/en-us/library/ms738545(VS.85).aspx
  2. Re: Making a Packet Sniffer that Modifies Incomming Packets

    You can use an existing library like Winpcap (http://www.winpcap.org/),
    or API's like LSP (http://en.wikipedia.org/wiki/Layered_Service_Provider) /
    NDIS...
  3. Replies
    4
    Views
    1,350

    Re: send() return value

    Hi stratoforce,

    Take a look at:
    http://msdn.microsoft.com/en-us/library/ms740481(VS.85).aspx


    Reagrds
    Doron Moraz
  4. Replies
    4
    Views
    1,350

    Re: send() return value

    The right sequence of closing a TCP connection without loosing data is:

    Call shutdown() (how parameter = 1) when you finish sending the data.
    Call closesocket() after recv() returns 0.


    ...
  5. Replies
    2
    Views
    1,169

    Re: How to pass user domain to rtsp server.

    Hi sulabh.

    Try,
    http://www.softgridguru.com/


    Good luck
    Doron Moraz
  6. Replies
    3
    Views
    1,401

    Re: https file download

    Hi sulabh,



    URLDownloadToFile(NULL, _T("https://server.com"), _T("c:\\file.dat"), 0, NULL );




    Regards
  7. Replies
    5
    Views
    842

    Re: Security issue for SOAP protocol

    To determine whether SSL is configured correctly, try using an https URL such as the following:
    https://myserver.com


    Regards
    Doron Moraz
  8. Thread: No idea

    by Doron Moraz
    Replies
    3
    Views
    882

    Re: No idea

    Hi Raislin,

    Take a look at:
    http://en.wikipedia.org/wiki/Berkeley_sockets


    Good luck
    Doron
  9. Replies
    5
    Views
    842

    Re: Security issue for SOAP protocol

    You won't get it if you didn't pay for it 8)
  10. Replies
    1
    Views
    1,241

    Re: Accessing Online Folders

    Use can use URLDownloadToFile
    http://msdn.microsoft.com/en-us/library/ms775123(VS.85).aspx


    Regards
    Doron Moraz
  11. Replies
    5
    Views
    842

    Re: Security issue for SOAP protocol

    Yes, Use SSL.


    Regards
    Doron Moraz
  12. Replies
    3
    Views
    1,192

    Re: limit home network bandwidth per node

    Hi Dcyuri,

    The link doesn't work so I don't know what your initial request was.
    I can only assume that you would like to intercept and manipulate packets, and if that's the case why hook if you...
  13. Re: C++ assignment for the gurus only . Solve this if u can .

    lol, good one....
  14. Re: C++ assignment for the gurus only . Solve this if u can .

    Try



    int main()
    {
    int a=5, b=2;

    printf("%d\n",a*b);
    printf("%d\n",a+b);
  15. Re: new operator overload and singleton instantiation

    Consider Loki's singleton:
    http://loki-lib.cvs.sourceforge.net/loki-lib/loki/include/loki/Singleton.h?view=markup

    The class template policies can generate many different types of singletons,...
  16. Re: Can't kill my process to rebuild the app

    It actually does.
    Find->Handle or DLL substring
  17. Re: Can't kill my process to rebuild the app

    Ooops: http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx


    Regardless to the process killing, ProcessXP will allow you to see who is using program.exe....


    Reagrds
    Doron
  18. Re: Can't kill my process to rebuild the app

    Hi Lindley,

    Try using SystemInternal process explorer (now part of Microsoft)
    http://technet.microsoft.com/en-us/sysinternals/bb896653.asp

    With ProcessXP when you zoom in on a particular...
  19. Replies
    1
    Views
    1,688

    Re: WinInet Question

    Hi klambiguit,

    You need to replace:


    HINTERNET hOpen;
    HINTERNET hConnect;
    HINTERNET hRequest;
    LPCWSTR ax = (LPCWSTR)"/index.php";
    LPCWSTR bx = (LPCWSTR)"";
  20. Re: Send Request to Web Service and get Statuscode

    After you create an instance of CInternetSession, call CInternetSession::GetHttpConnection() to establish HTTP connection and get a pointer to a CHttpConnection object that can manage the connection...
  21. Replies
    3
    Views
    2,078

    Re: GetLastError() in a MessageBox()?

    GetLastError() return the calling thread's last-error code.
    Error codes are 32-bit values so to display the error code you will have to construct a string representation of the error code, something...
  22. Replies
    8
    Views
    627

    Re: Is this array or vector leaking?

    There are no memory leaks in the code you've posted.

    Just in case that this is a pseudo code make sure that in your implementation, test() is not returning or throwing an exception between the...
  23. Re: Sending sms from pc to mobile through mobile

    You can download a simple Java SMS API suite from:
    http://sourceforge.net/projects/java-sms-api

    Or you can integrate your app with an external gateway & API provider:
    ...
  24. Replies
    3
    Views
    1,939

    Re: Calculating bandwidth

    There are quite a few QOS algorithms with bandwidth prediction or LSTP that may help you to achieve your goal.

    There is a very good article that you may find interesting:...
  25. Replies
    2
    Views
    1,144

    Re: simple network game

    Learning network programming from 'online games sources' will probably make things more complicated.

    Keep it simple, the URL you've posted shows you how to build a simple client/server...
Results 1 to 25 of 111
Page 1 of 5 1 2 3 4



HTML5 Development Center

Click Here to Expand Forum to Full Width