Error message while using IO::Socket::INET module.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Dimbeswar Pathak
    New Member
    • Jun 2007
    • 1

    Error message while using IO::Socket::INET module.

    I got an error message
    "use" not allowed in expression at client.pl line 2, at end of line
    syntax error at client.pl line 2, near "use IO::Socket::INE T"
    Execution of client.pl aborted due to compilation errors.

    How to resolve it ..
    I have also downloaded the IO::Socket::INE T
  • KevinADC
    Recognized Expert Specialist
    • Jan 2007
    • 4092

    #2
    the line should be like this:

    use IO::Socket::INE T;

    check for an error in some other line, maybe a missing ";" on the end of a line or a missing quote.

    Comment

    Working...