OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:WebSocketHandshake
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/WebCore/websockets/
WebSocketHandshake.h
45
class
WebSocketHandshake
{
46
WTF_MAKE_NONCOPYABLE(
WebSocketHandshake
);
51
WebSocketHandshake
(const KURL&, const String& protocol, ScriptExecutionContext*);
52
~
WebSocketHandshake
();
WebSocketHandshake.cpp
36
#include "
WebSocketHandshake
.h"
163
WebSocketHandshake
::
WebSocketHandshake
(const KURL& url, const String& protocol, ScriptExecutionContext* context)
178
WebSocketHandshake
::~
WebSocketHandshake
()
182
const KURL&
WebSocketHandshake
::url() const
187
void
WebSocketHandshake
::setURL(const KURL& url)
192
const String
WebSocketHandshake
::host() const
197
const String&
WebSocketHandshake
::clientProtocol() const
202
void
WebSocketHandshake
::setClientProtocol(const String& protocol
[
all
...]
/external/chromium/net/websockets/
websocket_handshake.cc
22
const int
WebSocketHandshake
::kWebSocketPort = 80;
23
const int
WebSocketHandshake
::kSecureWebSocketPort = 443;
25
WebSocketHandshake
::
WebSocketHandshake
(
37
WebSocketHandshake
::~
WebSocketHandshake
() {
40
bool
WebSocketHandshake
::is_secure() const {
44
std::string
WebSocketHandshake
::CreateClientHandshakeMessage() {
85
int
WebSocketHandshake
::ReadServerHandshake(const char* data, size_t len) {
119
std::string
WebSocketHandshake
::GetResourceName() const
[
all
...]
websocket_handshake.h
19
class
WebSocketHandshake
{
27
WebSocketHandshake
(const GURL& url,
31
virtual ~
WebSocketHandshake
();
113
DISALLOW_COPY_AND_ASSIGN(
WebSocketHandshake
);
Completed in 470 milliseconds