-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (82 loc) · 4.97 KB
/
index.html
File metadata and controls
82 lines (82 loc) · 4.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<title>cpp-netlib: The C++ Network Library</title>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet">
</head>
<body data-spy="scroll" data-target=".cpp-netlib-docs-sidebar">
<header class="jumbotron subhead">
<div class="container">
<h1>The C++ Network Library Project</h1>
<p class="lead">A collection of open-source libraries for high level network programming.</p>
</div>
</header>
<div class="container">
<div class="row">
<div class="span3 cpp-netlib-docs-sidebar">
<ul class="nav nav-list affix-top">
<li><a href="#overview"><i class="icon-chevron-right"></i>Overview</a></li>
<li><a href="#download"><i class="icon-chevron-right"></i>Download</a></li>
<li><a href="#documentation"><i class="icon-chevron-right"></i>Documentation</a></li>
<li><a href="#support"><i class="icon-chevron-right"></i>Support</a></li>
<li><a href="#policies"><i class="icon-chevron-right"></i>Project Policies</a></li>
</ul>
</div>
<div class="span9">
<section id="overview">
<div class="page-header">
<h1>Overview</h1>
</div>
<p>The project aims to build upon the latest C++ standard (currently C++11) to provide easy to use libraries for network programming. We use the latest compiler versions and features with an eye on pushing the boundaries on leveraging what's available in C++.</p>
<p>Currently the library contains an HTTP client and server implementation, a stand-alone URI library, a network message framework, and some concurrency tools.</p>
<p>The project welcomes contributions from people interested in joining the effort. See the section on <a href="#policies">Project Policies</a> for more information on getting involved.</p>
</section>
<section id="download">
<div class="page-header">
<h1>Download</h1>
</div>
<p>You can download latest and previous releases of the library from our Github download page. <a href="https://github.com/cpp-netlib/cpp-netlib/downloads" class="btn btn-primary">Download</a></p>
</section>
<section id="documentation">
<div class="page-header">
<h1>Documentation</h1>
</div>
<p>We make the documentation for supported releases of the library available through the following links.</p>
<ul>
<li><a href="0.9.4/index.html">0.9.4</a> — current stable release.</li>
<li><a href="0.8/index.html">0.8</a> — previous stable (unsupported) release.</li>
</ul>
</section>
<section id="support">
<div class="page-header">
<h1>Support</h1>
</div>
<p>We offer two avenues of support for user issues, depending on what kind of issues you're encountering.</p>
<h2>Reporting Bugs</h2>
<p>If you're using the library and would like to report issues with the library, please file your bug reports and support requests in the official issue tracker.</p>
<p><a href="https://github.com/cpp-netlib/cpp-netlib/issues" class="btn btn-danger">File Bugs</a></p>
<h2>Developer Support</h2>
<p>If you're interested in contributing to the development or if you have questions directly involving the implementation or for general discussion of the project, you can subscribe to and discuss with us through the developers mailing list.</p>
<p><a href="https://groups.google.com/forum/?fromgroups#!forum/cpp-netlib" class="btn btn-success">Discussion Group</a></p>
</section>
<section id="policies">
<div class="page-header">
<h1>Project Policies</h1>
</div>
<p>The project welcomes contributors and starting with 2013, we've resolved to document as much of the policies we follow in the project as we can. Please follow the links below for more information.</p>
<ul>
<li><a href="process.html">Development Process</a></li>
<li><a href="style-guide.html">Style Guide</a></li>
<li><a href="proposals.html">Proposing New Libraries</a></li>
</ul>
</section>
</div>
</div>
<footer class="footer">
<p><small>Copyright 2012 Dean Michael Berris; Glyn Matthews; Google, Inc. -- Distributed under the Boost Software License, Version 1.0. (See accompanying file <a href="LICENSE_1_0.txt">LICENSE_1_0.txt</a> or copy at <a href="http://www.boost.org/LICENSE_1_0.txt">http://www.boost.org/LICENSE_1_0.txt</a></small></p>
</footer>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
</body>
</html>