Do you know how to close this connection? My error is (modified IP and port):

connecting to host 123.456.789.012 (123.456.789.12), port 1234 connection open

The code that deals with this error is:

open (MPRINT, "| $testconnect") || die "Can't open pipe to $mconn $!" +; print MPRINT "- Time:\n $date\n"; print MPRINT "- Name:\n $frmName\n"; print MPRINT "- Phone:\n $frmPhone\n"; print MPRINT "- Dept:\n $frmDept\n"; if ($FORM{'DeptBillingCode'}){ print MPRINT "- Department Billing Code:\n $frmDe +ptBillingCode\n"; } if ($FORM{'IDR'}){ print MPRINT "- IDR:\n $frmIDR\n";<br> } print MPRINT "- Building:\n $frmBuilding\n"; print MPRINT "- Room Number:\n $frmRoom\n"; if ($FORM{'Contact'}){ print MPRINT "- Contact:\n $frmContact\n"; } if ($FORM{'EquipmentType'}){ print MPRINT "- Equipment Type:\n $frmEquipmentTy +pe\n"; } print MPRINT "- Model Number:\n $frmModelNumber\n"; if ($FORM{'SerialNumber'}){ print MPRINT "- Serial Number:\n $frmSerialNumber +\n"; } print MPRINT "- Problem:\n $frmProblem\n"; if ($FORM{'WarrantyStatus'}){ print MPRINT "- Warranty Status:\n $frmWarrantySt +atus\n"; } if ($FORM{'BestTime'}){ print MPRINT "- Best Time:\n $frmBestTime\n"; } if ($FORM{'OtherInfo'}){ print MPRINT "- Other Information:\n $frmOtherInf +o\n"; } close(MPRINT);
Note
$testconnect is something like: "mconnect 123.456.789.012 -p 1234"

Thank You, Tim

Edited by BazB. Changed pre tags to code tags.


In reply to Closing mconnect by timmyb85

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.