views:

39

answers:

2

Hello

How should I program to use TIPC networking protocol, that comes with linux kernel (CONFIG_TIPC xconfig parameter) ?

Is there any applications, which uses TIPC?

A: 

I had no idea what TIPC was, but I Googled an indication that it could be accessed as "sockets of the AF_TIPC address family".

In this case, you should be able to access it through the regular socket mechanism, like any other socket type:

  struct sockaddr_in Foo;
  ...
  memset(&Foo, 0, sizeof(Foo));     // Init address struct.
  Foo.sin_family = AF_TIPC;         // Instead of the usual AF_INET
  etc.

Documentation (that includes examples) is there. And the documentation mentions that TIPC has a "native" API as well.

filofel
A: 

Software:

http://www.google.com/codesearch?ie=UTF-8&q=AF_TIPC

CodeResults 1 - 10 of 587. (0.36 seconds)

osgx