Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 476274
Collapse All | Expand All

(-)src/cpp/core/include/core/http/AsyncServer.hpp (-1 / +1 lines)
Lines 264-270 Link Here
264
         
264
         
265
         // convert to cannonical HttpConnection
265
         // convert to cannonical HttpConnection
266
         boost::shared_ptr<AsyncConnection> pAsyncConnection =
266
         boost::shared_ptr<AsyncConnection> pAsyncConnection =
267
             boost::shared_static_cast<AsyncConnection>(pConnection);
267
             boost::static_pointer_cast<AsyncConnection>(pConnection);
268
268
269
         // call the appropriate handler to generate a response
269
         // call the appropriate handler to generate a response
270
         std::string uri = pRequest->uri();
270
         std::string uri = pRequest->uri();
(-)src/cpp/core/include/core/http/LocalStreamAsyncClient.hpp (-1 / +1 lines)
Lines 87-93 Link Here
87
      boost::shared_ptr<AsyncClient<boost::asio::local::stream_protocol::socket> >
87
      boost::shared_ptr<AsyncClient<boost::asio::local::stream_protocol::socket> >
88
                                    ptrShared = shared_from_this();
88
                                    ptrShared = shared_from_this();
89
89
90
      return boost::shared_static_cast<LocalStreamAsyncClient>(ptrShared);
90
      return boost::static_pointer_cast<LocalStreamAsyncClient>(ptrShared);
91
   }
91
   }
92
92
93
private:
93
private:
(-)src/cpp/core/include/core/http/TcpIpAsyncClient.hpp (-1 / +1 lines)
Lines 74-80 Link Here
74
      boost::shared_ptr<AsyncClient<boost::asio::ip::tcp::socket> > ptrShared
74
      boost::shared_ptr<AsyncClient<boost::asio::ip::tcp::socket> > ptrShared
75
                                                = shared_from_this();
75
                                                = shared_from_this();
76
76
77
      return boost::shared_static_cast<TcpIpAsyncClient>(ptrShared);
77
      return boost::static_pointer_cast<TcpIpAsyncClient>(ptrShared);
78
   }
78
   }
79
79
80
private:
80
private:
(-)src/cpp/core/include/core/http/TcpIpAsyncClientSsl.hpp (-1 / +1 lines)
Lines 109-115 Link Here
109
      boost::shared_ptr<AsyncClient<boost::asio::ssl::stream<boost::asio::ip::tcp::socket> > > ptrShared
109
      boost::shared_ptr<AsyncClient<boost::asio::ssl::stream<boost::asio::ip::tcp::socket> > > ptrShared
110
                                                 = shared_from_this();
110
                                                 = shared_from_this();
111
111
112
      return boost::shared_static_cast<TcpIpAsyncClientSsl>(ptrShared);
112
      return boost::static_pointer_cast<TcpIpAsyncClientSsl>(ptrShared);
113
   }
113
   }
114
114
115
   virtual bool isShutdownError(const boost::system::error_code& ec)
115
   virtual bool isShutdownError(const boost::system::error_code& ec)
(-)src/cpp/session/http/SessionHttpConnectionListenerImpl.hpp (-1 / +1 lines)
Lines 256-262 Link Here
256
   {
256
   {
257
      // convert to cannonical HttpConnection
257
      // convert to cannonical HttpConnection
258
      boost::shared_ptr<HttpConnection> ptrHttpConnection =
258
      boost::shared_ptr<HttpConnection> ptrHttpConnection =
259
            boost::shared_static_cast<HttpConnection>(ptrConnection);
259
            boost::static_pointer_cast<HttpConnection>(ptrConnection);
260
260
261
      if (!authenticate(ptrHttpConnection))
261
      if (!authenticate(ptrHttpConnection))
262
      {
262
      {

Return to bug 476274