Skip to content

Commit 4277f9b

Browse files
committed
copyright information
1 parent 9be7b9e commit 4277f9b

File tree

13 files changed

+52
-0
lines changed

13 files changed

+52
-0
lines changed

example/client.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/** prototls - Portable asynchronous client/server communications C++ library
2+
3+
See LICENSE for copyright information.
4+
*/
15
#include "prototls.hpp"
26
#include "my_protocol.pb.h"
37
int main(int argc, char** argv) {

example/server.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/** prototls - Portable asynchronous client/server communications C++ library
2+
3+
See LICENSE for copyright information.
4+
*/
15

26
#include "prototls.hpp"
37
#include "my_protocol.pb.h"

include/prototls.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/** prototls - Portable asynchronous client/server communications C++ library
2+
3+
See LICENSE for copyright information.
4+
*/
15
#ifndef _prototls_hpp_
26
#define _prototls_hpp_
37
#include "prototls/Common.hpp"

include/prototls/Common.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/** prototls - Portable asynchronous client/server communications C++ library
2+
3+
See LICENSE for copyright information.
4+
*/
15
#ifndef _prototls_common_hpp_
26
#define _prototls_common_hpp_
37
#include <string>

include/prototls/Peer.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/** prototls - Portable asynchronous client/server communications C++ library
2+
3+
See LICENSE for copyright information.
4+
*/
15
#ifndef _prototls_peer_hpp_
26
#define _prototls_peer_hpp_
37
#include <google/protobuf/message.h>

include/prototls/Select.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/** prototls - Portable asynchronous client/server communications C++ library
2+
3+
See LICENSE for copyright information.
4+
*/
15
#ifndef _prototls_select_hpp_
26
#define _prototls_select_hpp_
37
#include "prototls/Socket.hpp"

include/prototls/Server.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/** prototls - Portable asynchronous client/server communications C++ library
2+
3+
See LICENSE for copyright information.
4+
*/
15
#ifndef _prototls_server_hpp_
26
#define _prototls_server_hpp_
37
#include "prototls/Socket.hpp"

include/prototls/Socket.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/** prototls - Portable asynchronous client/server communications C++ library
2+
3+
See LICENSE for copyright information.
4+
*/
15
#ifndef _prototls_socket_hpp_
26
#define _prototls_socket_hpp_
37
#include <string>

include/prototls/TLSSocket.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/** prototls - Portable asynchronous client/server communications C++ library
2+
3+
See LICENSE for copyright information.
4+
*/
15
#ifndef _prototls_tlssocket_hpp_
26
#define _prototls_tlssocket_hpp_
37
#include "prototls/Socket.hpp"

include/prototls/TSDeque.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/** prototls - Portable asynchronous client/server communications C++ library
2+
3+
See LICENSE for copyright information.
4+
*/
15
#ifndef _prototls_tsdeque_hpp_
26
#define _prototls_tsdeque_hpp_
37
#include <deque>

0 commit comments

Comments
 (0)