From aa6e8869f59cab90bae4e3be69619d6c2ce1b3e7 Mon Sep 17 00:00:00 2001 From: Yedidya Feldblum Date: Wed, 12 Aug 2015 13:29:16 -0700 Subject: [PATCH] CodeMod apache::thrift::transport::TSocketAddress to folly::SocketAddress. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Summary: [Folly] CodeMod apache::thrift::transport::TSocketAddress to folly::SocketAddress. yes | codemod --extensions h,tcc,cpp '^#include [<"]thrift/lib/cpp/transport/TSocketAddress\.h[>"]$' '#include ' yes | codemod --extensions h,tcc '\b(((apache::)?thrift::)?transport::)?TSocketAddress\b' 'folly::SocketAddress' yes | codemod --extensions cpp '^using apache::thrift::transport::TSocketAddress;$' 'using folly::SocketAddress;' yes | codemod --file-list "$(git ls-files "**/*.cpp" | xargs grep -P '^using (namespace folly|folly::SocketAddress);$' | cut -d: -f1 | paste -s -d,)" '\b(((apache::)?thrift::)?transport::)?TSocketAddress\b' 'SocketAddress' yes | codemod --extensions cpp '\b(((apache::)?thrift::)?transport::)?TSocketAddress\b' 'folly::SocketAddress' yes | codemod --extensions h,tcc,cpp -m '^\s*typedef folly::SocketAddress folly::SocketAddress;\n' '' yes | codemod --file-list thrift/lib/cpp/Makefile.am -m '^\s*transport/TSocketAddress\.h \\\n' '' rm thrift/lib/cpp/transport/TSocketAddress.h Reviewed By: @Invalid auth token., @​luk Differential Revision: D2325523 --- folly/SocketAddress.h | 2 +- folly/io/async/AsyncServerSocket.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/folly/SocketAddress.h b/folly/SocketAddress.h index 8f93953a..4f0d9cfc 100644 --- a/folly/SocketAddress.h +++ b/folly/SocketAddress.h @@ -306,7 +306,7 @@ class SocketAddress { void setFromLocalAddress(SocketDesc socket); /** - * Initialize this TSocketAddress from a struct sockaddr. + * Initialize this folly::SocketAddress from a struct sockaddr. * * Raises std::system_error on error. * diff --git a/folly/io/async/AsyncServerSocket.h b/folly/io/async/AsyncServerSocket.h index 26662fc9..51fc6493 100644 --- a/folly/io/async/AsyncServerSocket.h +++ b/folly/io/async/AsyncServerSocket.h @@ -80,7 +80,7 @@ class AsyncServerSocket : public DelayedDestruction * for closing it when done. The newly accepted file * descriptor will have already been put into * non-blocking mode. - * @param clientAddr A reference to a TSocketAddress struct containing the + * @param clientAddr A reference to a SocketAddress struct containing the * client's address. This struct is only guaranteed to * remain valid until connectionAccepted() returns. */ -- 2.34.1