source: EcnlProtoTool/trunk/mruby-2.1.1/mrbgems/mruby-socket/README.md@ 439

Last change on this file since 439 was 439, checked in by coas-nagasima, 4 years ago

mrubyを2.1.1に更新

File size: 1.9 KB
Line 
1mruby-socket
2============
3
4"mruby-socket" mrbgem provides BSD socket interface for mruby.
5API is compatible with CRuby's "socket" library.
6
7
8## Example
9```sh
10% vi kame.rb
11s = TCPSocket.open("www.kame.net", 80)
12s.write("GET / HTTP/1.0\r\n\r\n")
13puts s.read
14s.close
15
16% mruby kame.rb
17HTTP/1.1 200 OK
18Date: Tue, 21 May 2013 04:31:30 GMT
19...
20```
21
22## Requirement
23- [mruby-io](https://github.com/mruby/mruby/tree/master/mrbgems/mruby-io) mrbgem
24- [iij/mruby-mtest](https://github.com/iij/mruby-mtest) mrgbem to run tests
25- system must have RFC3493 basic socket interface
26- and some POSIX API...
27
28## TODO
29- add missing methods
30- write more tests
31- fix possible descriptor leakage (see XXX comments)
32- `UNIXSocket#recv_io` `UNIXSocket#send_io`
33
34
35## License
36
37Copyright (c) 2013 Internet Initiative Japan Inc.
38Copyright (c) 2017 mruby developers
39
40Permission is hereby granted, free of charge, to any person obtaining a
41copy of this software and associated documentation files (the "Software"),
42to deal in the Software without restriction, including without limitation
43the rights to use, copy, modify, merge, publish, distribute, sublicense,
44and/or sell copies of the Software, and to permit persons to whom the
45Software is furnished to do so, subject to the following conditions:
46
47The above copyright notice and this permission notice shall be included in
48all copies or substantial portions of the Software.
49
50THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
51IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
52FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
53AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
54LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
55FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
56DEALINGS IN THE SOFTWARE.
Note: See TracBrowser for help on using the repository browser.