From 4902c0563f632f8fa955c6ea16a0f9dafc08291f Mon Sep 17 00:00:00 2001 From: Mark Slee Date: Thu, 1 Mar 2007 00:31:30 +0000 Subject: [PATCH] Apply Thrift license to PHP source code Reviewed By: php git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665033 13f79535-47bb-0310-9956-ffa450edef68 --- lib/php/src/Thrift.php | 11 +++++++++++ lib/php/src/protocol/TBinaryProtocol.php | 13 ++++++++++++- lib/php/src/protocol/TProtocol.php | 11 +++++++++++ lib/php/src/transport/TBufferedTransport.php | 11 +++++++++++ lib/php/src/transport/TFramedTransport.php | 11 +++++++++++ lib/php/src/transport/TPhpStream.php | 11 +++++++++++ lib/php/src/transport/TSocket.php | 11 +++++++++++ lib/php/src/transport/TSocketPool.php | 11 +++++++++++ lib/php/src/transport/TTransport.php | 11 +++++++++++ 9 files changed, 100 insertions(+), 1 deletion(-) diff --git a/lib/php/src/Thrift.php b/lib/php/src/Thrift.php index 5fa57f03..21a175c0 100644 --- a/lib/php/src/Thrift.php +++ b/lib/php/src/Thrift.php @@ -1,5 +1,16 @@ + */ + /** * Data types that can be sent via Thrift */ diff --git a/lib/php/src/protocol/TBinaryProtocol.php b/lib/php/src/protocol/TBinaryProtocol.php index 91fcd5fb..4caab3f8 100644 --- a/lib/php/src/protocol/TBinaryProtocol.php +++ b/lib/php/src/protocol/TBinaryProtocol.php @@ -1,4 +1,15 @@ - + */ /** * Binary implementation of the Thrift protocol. diff --git a/lib/php/src/protocol/TProtocol.php b/lib/php/src/protocol/TProtocol.php index 63e93081..deddfa25 100644 --- a/lib/php/src/protocol/TProtocol.php +++ b/lib/php/src/protocol/TProtocol.php @@ -1,5 +1,16 @@ + */ + /** * Protocol module. Contains all the types and definitions needed to implement * a protocol encoder/decoder. diff --git a/lib/php/src/transport/TBufferedTransport.php b/lib/php/src/transport/TBufferedTransport.php index 3c66135f..2ce47e31 100644 --- a/lib/php/src/transport/TBufferedTransport.php +++ b/lib/php/src/transport/TBufferedTransport.php @@ -1,5 +1,16 @@ + */ + /** * Buffered transport. Stores data to an internal buffer that it doesn't * actually write out until flush is called. For reading, we do a greedy diff --git a/lib/php/src/transport/TFramedTransport.php b/lib/php/src/transport/TFramedTransport.php index 8dae135b..63f5b0f1 100644 --- a/lib/php/src/transport/TFramedTransport.php +++ b/lib/php/src/transport/TFramedTransport.php @@ -1,5 +1,16 @@ + */ + /** * Framed transport. Writes and reads data in chunks that are stamped with * their length. diff --git a/lib/php/src/transport/TPhpStream.php b/lib/php/src/transport/TPhpStream.php index 1f371732..8a4fb0a5 100644 --- a/lib/php/src/transport/TPhpStream.php +++ b/lib/php/src/transport/TPhpStream.php @@ -1,5 +1,16 @@ + */ + /** * Php stream transport. Reads to and writes from the php standard streams * php://input and php://output diff --git a/lib/php/src/transport/TSocket.php b/lib/php/src/transport/TSocket.php index f7ecce06..1600b6f7 100644 --- a/lib/php/src/transport/TSocket.php +++ b/lib/php/src/transport/TSocket.php @@ -1,5 +1,16 @@ + */ + /** * Sockets implementation of the TTransport interface. * diff --git a/lib/php/src/transport/TSocketPool.php b/lib/php/src/transport/TSocketPool.php index dca69f98..9e5ebcde 100644 --- a/lib/php/src/transport/TSocketPool.php +++ b/lib/php/src/transport/TSocketPool.php @@ -1,5 +1,16 @@ + */ + /** Inherits from Socket */ include_once $GLOBALS['THRIFT_ROOT'].'/transport/TSocket.php'; diff --git a/lib/php/src/transport/TTransport.php b/lib/php/src/transport/TTransport.php index 2a8d217b..6740dcdc 100644 --- a/lib/php/src/transport/TTransport.php +++ b/lib/php/src/transport/TTransport.php @@ -1,5 +1,16 @@ + */ + /** * Transport exceptions */ -- 2.17.1