• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

cppsocket_programs/H13-Nov-2020-3,6742,778

cppsocketapi/H13-Nov-2020-4,6362,909

scripts/H13-Nov-2020-576450

socket_programs/H13-Nov-2020-2,8232,172

socketapi/H13-Nov-2020-20,87613,953

AUTHORSH A D09-Nov-201680 32

COPYINGH A D09-Nov-201634.3 KiB675553

ChangeLogH A D13-Nov-2020125.6 KiB3,7182,253

INSTALLH A D09-Nov-20166.8 KiB168129

Makefile.amH A D09-Nov-2016101 42

Makefile.inH A D13-Nov-202025.3 KiB831733

NEWSH A D09-Nov-20160

READMEH A D09-Nov-20161.8 KiB5240

aclocal.m4H A D13-Nov-2020383.4 KiB10,7119,682

compileH A D13-Nov-20207.2 KiB349259

config.guessH A D13-Nov-202043.2 KiB1,4811,288

config.h.inH A D13-Nov-20202.6 KiB10469

config.subH A D13-Nov-202035.3 KiB1,8021,661

configureH A D13-Nov-2020603 KiB19,78116,676

configure.acH A D13-Nov-20206.5 KiB203173

depcompH A D13-Nov-202023 KiB792502

install-shH A D13-Nov-202015 KiB519337

ltmain.shH A D02-Mar-2020319.6 KiB11,2528,044

missingH A D13-Nov-20206.7 KiB216143

README

1---------------------------------------------------------------------------------
2
3This source code repository contains an implementation of the
4socket API for the sctplib SCTP userland implementation.
5
6See http://www.ietf.org/internet-drafts/draft-ietf-tsvwg-sctpsocket-18.txt
7for a description of the API.
8
9---------------------------------------------------------------------------------
10
11Installation instructions:
121. - Get a compatible version of the sctplib from http://www.sctp.de/sctp.html
13   - Install it:
14     prompt> tar xzvf sctplib-XXXX.tar.gz
15     prompt> cd sctplib-XXXX
16     prompt> ./configure
17     prompt> make
18     prompt> make install   (as root!)
19     Now, the sctplib should be installed under /usr/local.
202. - Go to the socketapi directory
21     prompt> aclocal
22     prompt> autoconf
23     prompt> autoheader
24     prompt> automake
25     prompt> ./configure
26     prompt> make
27     prompt> make install   (as root!)
28
29
30It contains a number of files that are shortly described hereafter:
31AUTHORS   :   People who have produced this code.
32COPYING   :   The license to be applied for using/compiling/distributing
33              this code.
34INSTALL   :   Basic installation notes.
35NEWS      :   Changes from release to release.
36README    :   This file
37TODO      :   A more or less complete list of missing features/known
38              problems, etc.
39socketapi          :   This directory contains the socketapi sources.
40socket_programs    :   Example programs written in C.
41cppsocketapi       :   Some C++ wrapper classes for easier socket access.
42cppsocket_programs :   Example programs written in C++ using the C++ classes.
43
44
45Homepage and Mailing Lists:
46http://www.sctp.de/sctp.html
47Here, you will find a mailing list to which you can write bug reports.
48
49
50
51Thomas Dreibholz, dreibh@iem.uni-due.de
52