perl socket
Im trying to learn perl socket without the OO approach.
My get request isnt working, im not sure why.
Take a look?
#!/usr/bin/perl
use IO;
use Socket;
socket(SOCKFD,AF_INET,SOCK_STREAM,getprotobyname("tcp")) || die "Socket Error\n";
$host = gethostbyname("www.google.com");
$addr = sockaddr_in(80,$host);
connect(SOCKFD,$addr) || die "Connect Error\n";
print SOCKFD "GET /";
while(<SOCKFD>){
print $_;
}
Related Article: Perl syntax question
is a Perl discussion thread by tunisia that has 3 replies, was last updated 10 months ago and has been tagged with the keywords: perl.
coding101
Junior Poster in Training
74 posts since Apr 2010
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 0
My get request isnt working
What does that mean? Not working means millions of things... Have to taken a look at Socket doc?
Taywin
Posting Maven
2,633 posts since Apr 2010
Reputation Points: 275
Solved Threads: 375
Skill Endorsements: 17