1
0
mirror of https://github.com/haiwen/ccnet-server.git synced 2025-04-28 02:30:08 +00:00
Mirror from Github
Go to file
2018-05-09 10:19:55 +08:00
include Add rpc get_org_groups_by_user(). 2017-12-29 11:44:49 +08:00
lib Support listing child groups and users. 2018-05-08 17:50:21 +08:00
m4 Initial commit of Ccnet server. 2016-08-19 13:54:34 +08:00
net Add pgsql support in listing child groups. 2018-05-09 10:19:55 +08:00
python Merge pull request #22 from haiwen/list_child_groups_users 2018-05-09 10:13:51 +08:00
tools Initial commit of Ccnet server. 2016-08-19 13:54:34 +08:00
.gitignore Initial commit of Ccnet server. 2016-08-19 13:54:34 +08:00
.travis.yml Initial commit of Ccnet server. 2016-08-19 13:54:34 +08:00
autogen.sh Initial commit of Ccnet server. 2016-08-19 13:54:34 +08:00
configure.ac Enabled msyql on windows. 2016-12-27 15:04:37 +08:00
HACKING Initial commit of Ccnet server. 2016-08-19 13:54:34 +08:00
libccnet.pc.in Initial commit of Ccnet server. 2016-08-19 13:54:34 +08:00
LICENSE.txt Initial commit of Ccnet server. 2016-08-19 13:54:34 +08:00
Makefile.am Fix make dist. 2016-08-19 14:54:09 +08:00
README.markdown Initial commit of Ccnet server. 2016-08-19 13:54:34 +08:00

Ccnet is a framework for writing networked applications in C. It provides the following basic services:

  1. Peer identification
  2. Connection Management
  3. Service invocation
  4. Message sending

In ccnet network, there are two types of nodes, i.e., client and server. Server has the following functions:

  1. User management
  2. Group management

This repository is the Ccnet server.

Dependency

The following packages are required to build ccnet:

valac >= 0.8
libsearpc
libmysqlclient-dev for compiling ccnet server

Compile

To compile the client components, just

./autogen.sh && ./configure && make && make install

In Mac OS, use

LDFLAGS="-L/opt/local/lib -L/usr/local/mysql/lib -Xlinker -headerpad_max_install_names" ./configure

License

Ccnet server is published under AGPLv3. See LICENSE.txt for details.