Skip to content

Commit 655d598

Browse files
committed
Fixed issues with TFS Sync
1 parent 3b773b9 commit 655d598

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

Release/include/cpprest/ws_client.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -255,14 +255,14 @@ class websocket_client
255255
/// Creates a new websocket_client to connect to the specified uri.
256256
/// </summary>
257257
/// <param name="base_uri">A string representation of the base uri to be used for all messages. Must start with either "ws://" or "wss://"</param>
258-
_ASYNCRTIMP websocket_client(uri base_uri);
258+
_ASYNCRTIMP websocket_client(web::uri base_uri);
259259

260260
/// <summary>
261261
/// Creates a new websocket_client to connect to the specified uri.
262262
/// </summary>
263263
/// <param name="base_uri">A string representation of the base uri to be used for all requests. Must start with either "ws://" or "wss://"</param>
264264
/// <param name="client_config">The client configuration object containing the possible configuration options to intitialize the <c>websocket_client</c>. </param>
265-
_ASYNCRTIMP websocket_client(uri base_uri, websocket_client_config client_config);
265+
_ASYNCRTIMP websocket_client(web::uri base_uri, websocket_client_config client_config);
266266

267267
/// <summary>
268268
/// </summary>
@@ -319,7 +319,7 @@ class websocket_client
319319
/// <param name="close_status">Endpoint MAY use the following pre-defined status codes when sending a Close frame.</param>
320320
/// <param name="close_reason">While closing an established connection, an endpoint may indicate the reason for closure.</param>
321321
/// <returns>An asynchronous operation that is completed the connection has been successfully closed.</returns>
322-
pplx::task<void> websocket_client::close(websocket_close_status close_status, const utility::string_t& close_reason=_XPLATSTR(""))
322+
pplx::task<void> close(websocket_close_status close_status, const utility::string_t& close_reason=_XPLATSTR(""))
323323
{
324324
return m_client->close(close_status, close_reason);
325325
}
@@ -330,7 +330,7 @@ class websocket_client
330330
/// <returns>
331331
/// A base uri initialized in constructor
332332
/// </return>
333-
const uri& uri() const
333+
const web::uri& uri() const
334334
{
335335
return m_client->uri();
336336
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
add_executable(BingRequest ../../collateral/Samples/BingRequest/bingrequest.cpp)
1+
add_executable(BingRequest bingrequest.cpp)
22
target_link_libraries(BingRequest ${Casablanca_LIBRARIES})
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
add_executable(blackjackclient
2-
../../../collateral/Samples/BlackJack/BlackJack_Client/BlackJackClient.cpp
3-
../../../collateral/Samples/BlackJack/BlackJack_Client/stdafx.cpp
2+
BlackJackClient.cpp
3+
stdafx.cpp
44
)
55

66
target_link_libraries(blackjackclient ${Casablanca_LIBRARIES})
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
add_definitions(-Wno-sign-compare -Wno-enum-compare)
22

33
add_executable(blackjackserver
4-
../../../collateral/Samples/BlackJack/BlackJack_Server/BlackJack_Server.cpp
5-
../../../collateral/Samples/BlackJack/BlackJack_Server/Dealer.cpp
6-
../../../collateral/Samples/BlackJack/BlackJack_Server/stdafx.cpp
7-
../../../collateral/Samples/BlackJack/BlackJack_Server/Table.cpp
4+
BlackJack_Server.cpp
5+
Dealer.cpp
6+
stdafx.cpp
7+
Table.cpp
88
)
99

1010
target_link_libraries(blackjackserver ${Casablanca_LIBRARIES})
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
add_executable(SearchFile ../../collateral/Samples/SearchFile/searchfile.cpp)
1+
add_executable(SearchFile searchfile.cpp)
22
target_link_libraries(SearchFile ${Casablanca_LIBRARIES})

0 commit comments

Comments
 (0)