Skip to content

Commit

Permalink
Changed license to MIT (if anyone cares)
Browse files Browse the repository at this point in the history
  • Loading branch information
hellman committed Oct 26, 2013
1 parent 58fcd5c commit c75bb10
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ Simple threaded tcp/udp servers - kind of simplified SocketServer http://docs.py
Usage
---------------------

###TCP Client
###TCP Client

```python
from sock import *

f = Sock("some.cool.servi.ce", 3123, timeout=10)
f = Sock("some.cool.servi.ce:3123", timeout=10)
# or IPv6
f = Sock6("::1", 3123, 3)
f = Sock6("::1 3123", 3)
# or already existing socket
f = toSock(some_socket)

Expand Down Expand Up @@ -80,4 +80,4 @@ About

Author: hellman ( hellman1908@gmail.com )

License: GNU General Public License v2 (http://opensource.org/licenses/gpl-2.0.php)
License: MIT License (http://opensource.org/licenses/MIT)

0 comments on commit c75bb10

Please sign in to comment.