Advertisement
Guest User

Untitled

a guest
Jul 15th, 2013
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. rebol []
  2. http-request: {GET / HTTP/1.1
  3. Host: localhost
  4.  
  5. }
  6.  
  7. wp: make port! tcp://localhost
  8. wp/awake: func [event /local port] [
  9. port: event/port
  10. switch/default event/type [
  11. read [ read port]
  12. wrote [read port]
  13. lookup [port open port]
  14. connect [write port http-request]
  15. ][true]
  16. ]
  17.  
  18. forever [
  19. attempt [
  20. open wp
  21. wait [wp 0.01]
  22. close wp
  23. ]
  24. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement