]> git.proxmox.com Git - mirror_iproute2.git/commit - tipc/Makefile
tipc: add new TIPC configuration tool
authorRichard Alpe <richard.alpe@ericsson.com>
Thu, 7 May 2015 13:07:36 +0000 (15:07 +0200)
committerStephen Hemminger <shemming@brocade.com>
Thu, 21 May 2015 21:41:41 +0000 (14:41 -0700)
commitf043759dd492897513d5aa057427bcdab8592d4b
tree95f8fc965c7ec4acca573303e27f8ec776121400
parentcbb99f7fbe28e4a4b3afebe2d143109d7e28956e
tipc: add new TIPC configuration tool

tipc is a user-space configuration tool for TIPC (Transparent
Inter-process Communication). It utilizes the TIPC netlink API in the
kernel to fetch data or perform actions.

The tipc tool has somewhat similar syntax to the ip tool meaning that
users of the ip tool should not feel that unfamiliar with this tool.

Signed-off-by: Richard Alpe <richard.alpe@ericsson.com>
Reviewed-by: Erik Hugne <erik.hugne@ericsson.com>
Reviewed-by: Ying Xue <ying.xue@windriver.com>
Reviewed-by: Jon Maloy <jon.maloy@ericsson.com>
23 files changed:
Makefile
tipc/.gitignore [new file with mode: 0644]
tipc/Makefile [new file with mode: 0644]
tipc/README [new file with mode: 0644]
tipc/bearer.c [new file with mode: 0644]
tipc/bearer.h [new file with mode: 0644]
tipc/cmdl.c [new file with mode: 0644]
tipc/cmdl.h [new file with mode: 0644]
tipc/link.c [new file with mode: 0644]
tipc/link.h [new file with mode: 0644]
tipc/media.c [new file with mode: 0644]
tipc/media.h [new file with mode: 0644]
tipc/misc.c [new file with mode: 0644]
tipc/misc.h [new file with mode: 0644]
tipc/msg.c [new file with mode: 0644]
tipc/msg.h [new file with mode: 0644]
tipc/nametable.c [new file with mode: 0644]
tipc/nametable.h [new file with mode: 0644]
tipc/node.c [new file with mode: 0644]
tipc/node.h [new file with mode: 0644]
tipc/socket.c [new file with mode: 0644]
tipc/socket.h [new file with mode: 0644]
tipc/tipc.c [new file with mode: 0644]