Thread: Not a Programming question, more an Idea

  1. #1
    v3n37
    Guest

    Not a Programming question, more an Idea

    Hi All,

    I'll be writing network management software (using agents), and still haven't decided on a crucial part - the communication.

    I don't know what protocol to use (thinking of application layer protocols here) to enable agents to communicate with the management station.

    looked at the www.fipa.org but they don't have libraries for C++.

    Any ideas as what would be the best protocol to use.

    I know I can always define my own, but I want to keep things interoperable. Wanna use some well defined protocol.

    Thanks

  2. #2
    Registered User
    Join Date
    Oct 2002
    Posts
    21
    I'm not sure what your talking about but here I go.
    TCP/IP to talk to other machines.

    #define LOGIN 0
    #define LOGOUT 1
    #define COMMAND1 2
    #define COMMAND2 3


    MyBuffer[1001];
    MyBuffer = printf("Command:i%", LOGIN);
    // String the other computer will get
    Last edited by anobody; 10-06-2002 at 10:03 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. An idea that's out of my reach of knowledge
    By Akkernight in forum Tech Board
    Replies: 12
    Last Post: 04-08-2009, 09:35 PM
  2. another do while question
    By kbpsu in forum C++ Programming
    Replies: 3
    Last Post: 03-23-2009, 12:14 PM
  3. An Idea I have...
    By TechWins in forum Tech Board
    Replies: 1
    Last Post: 07-25-2003, 05:49 AM
  4. opengl DC question
    By SAMSAM in forum Game Programming
    Replies: 6
    Last Post: 02-26-2003, 09:22 PM
  5. Very simple question, problem in my Code.
    By Vber in forum C Programming
    Replies: 7
    Last Post: 11-16-2002, 03:57 PM