File: ru_netconnect.html

package info (click to toggle)
basic256 1.1.4.0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 24,456 kB
  • sloc: cpp: 10,148; yacc: 3,023; java: 1,091; lex: 1,051; sh: 117; xml: 33; makefile: 15
file content (130 lines) | stat: -rw-r--r-- 6,029 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en" dir="ltr" class="no-js">
<head>
    <meta charset="utf-8" />
    <title>ru:netconnect [BASIC 256 - Language Documentation]</title>
<link rel="stylesheet" type="text/css" href="lib/exe/cssc171c1dfe8519125bb40a349172b001a.css"/>
    </head>
<body>
    <div id="dokuwiki__site"><div id="dokuwiki__top" class="site dokuwiki mode_show tpl_dokuwiki     ">
<div id="dokuwiki__header"><div class="pad group">
    <div class="headings group">
        <h1><a href="start.html"  accesskey="h" title="[H]"><img src="lib/tpl/dokuwiki/images/logo.png" width="64" height="64" alt="" /> <span>BASIC 256 - Language Documentation</span></a></h1>
            </div>
    </div>
            <div class="breadcrumbs">
                            <div class="youarehere"><span class="bchead">You are here: </span><span class="home"><bdi><a href="start.html" class="wikilink1" title="start">start</a></bdi></span> » <bdi><a href="ru_start.html" class="wikilink1" title="ru:start">ru</a></bdi> » <bdi><span class="curid"><a href="ru_netconnect.html" class="wikilink1" title="ru:netconnect">netconnect</a></span></bdi></div>
                    </div>
    <hr class="a11y" />
</div></div>
        <div class="wrapper group">
            <div id="dokuwiki__content"><div class="pad group">
                <div class="pageId"><span>ru:netconnect</span></div>
                <div class="page group">
<h3 class="sectionedit1" id="netconnect">NetConnect</h3>
<div class="level3">
</div>
<h4 id="формат">Формат:</h4>
<div class="level4">
<p>
<strong>netconnect</strong> имя_сервера, номер_порта<br/>
<strong>netconnect</strong>( имя_сервера, номер_порта )<br/>
<strong>netconnect</strong> номер_сокета, имя_сервера, номер_порта<br/>
<strong>netconnect</strong>( номер_сокета, имя_сервера, номер_порта )
</p>
</div>
<h4 id="описание">Описание:</h4>
<div class="level4">
<p>
Открывает клиентское сетевое соединение с сервером. IP адрес или имя хоста указывается в параметре <em>имя_сервера</em>, а порт в параметре <em>номер_порта</em>. Если <em>номер_сокета</em>, используется нулевой (0) номер.
</p>
</div>
<h4 id="смотри_также">Смотри также:</h4>
<div class="level4">
<p>
<a href="ru_netaddress.html" class="wikilink1" title="ru:netaddress">NetAddress</a>, <a href="ru_netclose.html" class="wikilink1" title="ru:netclose">NetClose</a>, <a href="ru_netdata.html" class="wikilink1" title="ru:netdata">NetData</a>, <a href="ru_netlisten.html" class="wikilink1" title="ru:netlisten">NetListen</a>, <a href="ru_netread.html" class="wikilink1" title="ru:netread">NetRead</a>, <a href="ru_netwrite.html" class="wikilink1" title="ru:netwrite">NetWrite</a>
</p>
</div>
<h4 id="пример">Пример:</h4>
<div class="level4">
<p>
Откройте два экземпляра BASIC-256 на одном компьютере. Скопируйте код “сервера” в один экземпляр и код “клиента” в другой. Запустите сначала сервер, затем клиент. Вы сможете увидеть, как два различных процесса обмениваются сообщениями.&lt;h4&gt;Код для сервера&lt;/h4&gt;
</p>
<pre class="code"># Получаем сообщение и посылаем ответ об успешном соединении
print &quot;wait for connection on &quot; + netaddress()
netlisten 9997
print &quot;got connection&quot;
do
  while not netdata
   pause .1
   print &quot;.&quot;;
  end while
  n$ = netread
  print n$
  netwrite &quot;I got &#039;&quot; + n$ + &quot;&#039;.&quot;
until n$ = &quot;end&quot;
netclose</pre>
<p>
Будет напечатано (где xxx.xxx.xxx.xxx IPv4 адрес вашего компьютера)
</p>
<pre class="code">wait for connection on xxx.xxx.xxx.xxx
got connection
.1 Hi There
....2 Hi There
........3 Hi There
..........4 Hi There
.....5 Hi There
.......6 Hi There
....7 Hi There
..........8 Hi There
....9 Hi There
.....10 Hi There
.end</pre>
<p>
&lt;h4&gt;Код для клиента&lt;/h4&gt;
</p>
<pre class="code"># Ожидаем ввода сообщения от пользователя и посылаем его на сервер
input &quot;enter message?&quot;, m$
netconnect &quot;127.0.0.1&quot;, 9997
for t = 1 to 10
  pause rand
  netwrite t + &quot; &quot; + m$
  print netread
next t
netwrite &quot;end&quot;
print netread
netclose</pre>
<p>
Будет напечатано
</p>
<pre class="code">enter message?Hi There
I got &amp;#039;1 Hi There&amp;#039;.
I got &amp;#039;2 Hi There&amp;#039;.
I got &amp;#039;3 Hi There&amp;#039;.
I got &amp;#039;4 Hi There&amp;#039;.
I got &amp;#039;5 Hi There&amp;#039;.
I got &amp;#039;6 Hi There&amp;#039;.
I got &amp;#039;7 Hi There&amp;#039;.
I got &amp;#039;8 Hi There&amp;#039;.
I got &amp;#039;9 Hi There&amp;#039;.
I got &amp;#039;10 Hi There&amp;#039;.
I got &amp;#039;end&amp;#039;.</pre>
</div>
<h4 id="впервые_в_версии">Впервые в версии:</h4>
<div class="level4">
<p>
0.9.6.31
</p>
</div>
                                    </div>
                <div class="docInfo"><bdi>ru/netconnect.txt</bdi> · Last modified: 2011/03/29 11:56 (external edit)</div>
                            </div></div>
            <hr class="a11y" />
        </div>
<div id="dokuwiki__footer"><div class="pad">
    <div class="license">Except where otherwise noted, content on this wiki is licensed under the following license: <bdi><a href="http://creativecommons.org/licenses/by-sa/3.0/" rel="license" class="urlextern">CC Attribution-Share Alike 3.0 Unported</a></bdi></div>
</div></div>
    </div></div>
    <div id="screen__mode" class="no"></div>
</body>
</html>