これは私が試したものです
telnet www.google.com 80
Get HTTP/1.1 Host:www.google.com
これは私が受け取るものです
HTTP/1.0 400 Bad Request
Content-Type: text/html; charset=UTF-8
Content-Length: 925
Date: Sat, 24 Nov 2012 19:37:42 GMT
Server: GFE/2.0
これを機能させるにはどうすればよいですか? telnetを使用してwww.google.comにアクセスしようとしています
$ telnet www.google.com 80
Trying 173.194.38.82...
Connected to www.google.com.
Escape character is '^]'.
GET / HTTP/1.1
HTTP/1.1 302 Found
Location: http://www.google.co.jp/
Cache-Control: private
Content-Type: text/html; charset=UTF-8
[.... skipped ....]
リクエストを発行した後:
GET / HTTP/1.1
リクエストが終了したことを示すには、入力空の行も必要です。そうでない場合、何も返されません。