1
0
mirror of https://github.com/haiwen/ccnet-server.git synced 2025-04-26 18:00:50 +00:00
Mirror from Github
Go to file
Jiaqiang Xu 4ae8ea222f
Merge pull request #42 from haiwen/clear_ccnet_conf
Clean ccnet_conf and mykey.peer.
2019-10-22 15:20:42 +08:00
include Clean ccnet_conf and mykey.peer. 2019-10-21 23:10:40 -07:00
lib Clean ccnet_conf and mykey.peer. 2019-10-21 23:10:40 -07:00
m4 Initial commit of Ccnet server. 2016-08-19 13:54:34 +08:00
net Clean ccnet_conf and mykey.peer. 2019-10-21 23:10:40 -07:00
python support python3 (#35) 2019-07-25 11:59:28 +08:00
tools Clean ccnet_conf and mykey.peer. 2019-10-21 23:10:40 -07: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 Fix configure.ac to enable mysql. 2019-09-03 00:37:01 -07: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.