Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 6e103bc

Browse files
[[ RemoveRunRev ]] Update last references to RunRev/Revolution in 7.0
1 parent 3b05e9b commit 6e103bc

File tree

9 files changed

+24
-9
lines changed

9 files changed

+24
-9
lines changed

docs/dictionary/command/open-socket.xml

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/dictionary/command/secure-socket.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<doc> <legacy_id></legacy_id> <name>secure socket</name> <type>command</type> <syntax> <example>secure socket <i>socket</i> [without verification]</example> <example>secure socket <i>socket</i> [with verification [for host verificationHostName]]</example> </syntax> <synonyms> </synonyms> <summary>Secures an open socket.</summary> <examples><example>secure socket "runrev.com:443"</example><example>open socket to "127.0.0.0:8080"write "unencrypted message" to socket "127.0.0.0:8080"secure socket "127.0.0.0:8080"write "encrypted message" to socket "127.0.0.0:8080"</example><example>secure socket mySocket with verifcation for host "livecode.com"</example> </examples> <history> <introduced version="6.6">Added.</introduced> <deprecated version=""></deprecated> <removed version=""></removed> <changed version="6.7">Added verification for host variant</changed> <experimental version=""></experimental> <nonexperimental version=""></nonexperimental> </history> <objects> </objects> <platforms> <mac/> <windows/> <linux/> <ios/> <android/> </platforms> <classes> <desktop/> <mobile/> </classes> <security> <network/> </security> <classification> <category>Files, Folders, &amp; Resources</category> <category>Standalone Applications</category> </classification> <references> <command tag="open socket">open socket Command</command> <property tag="sslCertificates">sslCertificates Property</property> <message tag="socketError">socketError Message</message> </references> <description> <overview>Use the <b>secure socket </b>command to secure an open socket.</overview> <parameters> <parameter> <name>socket</name> <description>A reference to an open socket.</description> </parameter> <parameter> <name>verificationHostName</name> <description>The IP address or domain name of the host you want to verify against.</description> </parameter> </parameters> <value></value> <comments>If 'with verification' is specified, when connecting to a remote peer, the client verifies the peers certificate during the handshake process. The <property tag="sslCertificates">sslCertificates property</property> can be used to specify a list of certificates to verify against. In addition you can place system wide certificates in System/Library/OpenSSL/certs. If a verificationhostname is specified, the socket will be verified against that verificationhostname. An example of this is when you want to create a secure connection with a host while tunnelling through a proxy. Specifying the final host allows LiveCode to verify the socket against that host, rather than the proxy server.<p></p><p>If 'without verification' is specified then peers credentials are not authenticated, and any connection is accepted.</p><p></p><p>Once secured:</p><p>* All pending and future reads from the socket will be assumed to be encrypted.</p><p>* All pending writes will complete unencrypted. All future writes will be encrypted.</p><p></p><p>If the socket fails secure, a <message tag="socketError">socketError message</message> is sent to the object that opened the socket (not the object that attempted to secure it).</p><p></p><p></p><important> The secure secure socket command is part of the SSL &amp; Encryption library. To ensure that the command works in a standalone application, you must include this custom library when you create your standalone. In the Inclusions section on the General screen of the Standalone Application Settings window, make sure "SSL &amp; Encryption" is selected in the list of script libraries.</important><p>&#9;</p></comments> </description></doc>
1+
<doc> <legacy_id></legacy_id> <name>secure socket</name> <type>command</type> <syntax> <example>secure socket <i>socket</i> [without verification]</example> <example>secure socket <i>socket</i> [with verification [for host verificationHostName]]</example> </syntax> <synonyms> </synonyms> <summary>Secures an open socket.</summary> <examples><example>secure socket "livecode.com:443"</example><example>open socket to "127.0.0.0:8080"write "unencrypted message" to socket "127.0.0.0:8080"secure socket "127.0.0.0:8080"write "encrypted message" to socket "127.0.0.0:8080"</example><example>secure socket mySocket with verifcation for host "livecode.com"</example> </examples> <history> <introduced version="6.6">Added.</introduced> <deprecated version=""></deprecated> <removed version=""></removed> <changed version="6.7">Added verification for host variant</changed> <experimental version=""></experimental> <nonexperimental version=""></nonexperimental> </history> <objects> </objects> <platforms> <mac/> <windows/> <linux/> <ios/> <android/> </platforms> <classes> <desktop/> <mobile/> </classes> <security> <network/> </security> <classification> <category>Files, Folders, &amp; Resources</category> <category>Standalone Applications</category> </classification> <references> <command tag="open socket">open socket Command</command> <property tag="sslCertificates">sslCertificates Property</property> <message tag="socketError">socketError Message</message> </references> <description> <overview>Use the <b>secure socket </b>command to secure an open socket.</overview> <parameters> <parameter> <name>socket</name> <description>A reference to an open socket.</description> </parameter> <parameter> <name>verificationHostName</name> <description>The IP address or domain name of the host you want to verify against.</description> </parameter> </parameters> <value></value> <comments>If 'with verification' is specified, when connecting to a remote peer, the client verifies the peers certificate during the handshake process. The <property tag="sslCertificates">sslCertificates property</property> can be used to specify a list of certificates to verify against. In addition you can place system wide certificates in System/Library/OpenSSL/certs. If a verificationhostname is specified, the socket will be verified against that verificationhostname. An example of this is when you want to create a secure connection with a host while tunnelling through a proxy. Specifying the final host allows LiveCode to verify the socket against that host, rather than the proxy server.<p></p><p>If 'without verification' is specified then peers credentials are not authenticated, and any connection is accepted.</p><p></p><p>Once secured:</p><p>* All pending and future reads from the socket will be assumed to be encrypted.</p><p>* All pending writes will complete unencrypted. All future writes will be encrypted.</p><p></p><p>If the socket fails secure, a <message tag="socketError">socketError message</message> is sent to the object that opened the socket (not the object that attempted to secure it).</p><p></p><p></p><important> The secure secure socket command is part of the SSL &amp; Encryption library. To ensure that the command works in a standalone application, you must include this custom library when you create your standalone. In the Inclusions section on the General screen of the Standalone Application Settings window, make sure "SSL &amp; Encryption" is selected in the list of script libraries.</important><p>&#9;</p></comments> </description></doc>

engine/exec-tests/network/EvalHostAddress.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
setup
2-
put "www.runrev.com:80" into tSock
2+
put "www.livecode.com:80" into tSock
33
open socket tSock
44
test the hostaddress of tSock is "0.0.0.0"
55
close socket tSock

engine/exec-tests/network/EvalOpenSockets.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
setup
2-
put "www.runrev.com:80" into tSock
2+
put "www.livecode.com:80" into tSock
33
open socket tSock
44
test tSock is among the lines of the openSockets
55
close socket tSock

engine/exec-tests/network/EvalPeerAddress.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
setup
2-
put "www.runrev.com:80" into tSock
2+
put "www.livecode.com:80" into tSock
33
open socket tSock
44
test the peeraddress of tSock is among the lines of hostnametoaddress(tSock)
55
close socket tSock

engine/src/dskmain.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ bool X_init(int argc, MCStringRef argv[], MCStringRef envp[])
261261
{
262262
MCAutoPointer<char> t_MCN_version;
263263
/* UNCHECKED */ MCStringConvertToCString(MCNameGetString(MCN_version_string), &t_MCN_version);
264-
fprintf(stderr, "LiveCode %s Copyright 2003-2014 Runtime Revolution Ltd\n\
264+
fprintf(stderr, "LiveCode %s Copyright 2003-2015 LiveCode Ltd\n\
265265
Usage: %s [-d[isplay] displayname] \n\
266266
[-f[iles] (disable access to files and processes)\n\
267267
[-g[eometry] ={+-}<xoffset>{+-}<yoffset>]\n\

lcidlc/src/Coder.cpp

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,24 @@
1+
/* Copyright (C) 2013-2015 LiveCode Ltd.
2+
3+
This file is part of LiveCode.
4+
5+
LiveCode is free software; you can redistribute it and/or modify it under
6+
the terms of the GNU General Public License v3 as published by the Free
7+
Software Foundation.
8+
9+
LiveCode is distributed in the hope that it will be useful, but WITHOUT ANY
10+
WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
for more details.
13+
14+
You should have received a copy of the GNU General Public License
15+
along with LiveCode. If not see <http://www.gnu.org/licenses/>. */
16+
117
/*
218
* Coder.cpp
319
* lcidlc
420
*
521
* Created by Mark Waddingham on 27/07/2013.
6-
* Copyright 2013 Runtime Revolution. All rights reserved.
722
*
823
*/
924

libfoundation/src/foundation-string.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (C) 2003-2013 Runtime Revolution Ltd
1+
/* Copyright (C) 2003-2015 LiveCode Ltd.
22
33
This file is part of LiveCode.
44

revtestexternal/revtestexternal.lcidl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (C) 2003-2013 Runtime Revolution Ltd.
1+
/* Copyright (C) 2003-2015 LiveCode Ltd.
22

33
This file is part of LiveCode.
44

0 commit comments

Comments
 (0)