Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitbd707db

Browse files
committed
Merge branch 'standalone-asio' ofhttps://github.com/deanberris/cpp-netlib into deanberris-standalone-asio
2 parents1fae5c5 +d4a4256 commitbd707db

30 files changed

+2231
-0
lines changed

‎.gitmodules‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@
1010
[submodule "deps/igloo"]
1111
path=deps/igloo
1212
url=git://github.com/joakimkarlsson/igloo.git
13+
[submodule "deps/asio"]
14+
path=deps/asio
15+
url=git://github.com/cpp-netlib/asio
16+
branch=cmake-build

‎boost/network/auth/md5.hpp‎

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Copyright (c) Glyn Matthews 2010.
2+
// Distributed under the Boost Software License, Version 1.0.
3+
// (See accompanying file LICENSE_1_0.txt or copy at
4+
// http://www.boost.org/LICENSE_1_0.txt)
5+
6+
7+
#ifndef __BOOST_NETWORK_AUTH_MD5_INC__
8+
#define__BOOST_NETWORK_AUTH_MD5_INC__
9+
10+
11+
namespaceboost {
12+
namespacenetwork {
13+
namespaceauth {
14+
15+
}// namespace auth
16+
}// namespace network
17+
}// namespace boost
18+
19+
20+
#endif// __BOOST_NETWORK_AUTH_MD5_INC__

‎boost/network/auth/sasl.hpp‎

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
// Copyright (c) Glyn Matthews 2010.
2+
// Distributed under the Boost Software License, Version 1.0.
3+
// (See accompanying file LICENSE_1_0.txt or copy at
4+
// http://www.boost.org/LICENSE_1_0.txt)
5+
6+
7+
#ifndef __BOOST_NETWORK_AUTH_SASL_INC__
8+
#define__BOOST_NETWORK_AUTH_SASL_INC__
9+
10+
11+
#include<boost/network/traits/string.hpp>
12+
13+
14+
namespaceboost {
15+
namespacenetwork {
16+
namespaceauth {
17+
template<
18+
classTag
19+
>
20+
classbasic_sasl {
21+
22+
// struct anonymous {};
23+
// struct plain {};
24+
// struct digest_md5 {};
25+
26+
public:
27+
28+
typedeftypename string<Tag>::type string_type;
29+
30+
// explicit basic_sasl(anonymous);
31+
//
32+
// explicit basic_sasl(plain,
33+
// const string_type &id, const string_type &password);
34+
//
35+
// explicit basic_sasl(digest_md5,
36+
// const string_type &challenge,const string_type &jid, const string_type &password);
37+
38+
private:
39+
40+
string_type auth_string_;
41+
42+
};
43+
}// namespace auth
44+
}// namespace network
45+
}// namespace boost
46+
47+
48+
#endif// __BOOST_NETWORK_AUTH_SASL_INC__

‎boost/network/protocol/xmpp.hpp‎

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// Copyright (c) Glyn Matthews 2010.
2+
// Distributed under the Boost Software License, Version 1.0.
3+
// (See accompanying file LICENSE_1_0.txt or copy at
4+
// http://www.boost.org/LICENSE_1_0.txt)
5+
6+
7+
#ifndef __BOOST_NETWORK_PROTOCOL_XMPP_INC__
8+
#define__BOOST_NETWORK_PROTOCOL_XMPP_INC__
9+
10+
11+
#include<boost/network/protocol/xmpp/client.hpp>
12+
#include<boost/network/protocol/xmpp/detail
13+
# include <boost/network/protocol/xmpp/error.hpp>
14+
#include<boost/network/protocol/xmpp/iq.hpp>
15+
#include<boost/network/protocol/xmpp/message.hpp>
16+
#include<boost/network/protocol/xmpp/namespaces.hpp>
17+
#include<boost/network/protocol/xmpp/presence.hpp>
18+
#include<boost/network/protocol/xmpp/stanza.hpp>
19+
20+
21+
#endif// __BOOST_NETWORK_PROTOCOL_XMPP_INC__

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp