<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: wrong return value. in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/wrong-return-value/m-p/4349047#M683952</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;here command is "M3UA_create" and Object could be { nwk, sg, sgp, ipsp, ss7dpc, local_as,remote_as, lpc } so I just set the value of &lt;BR /&gt;M3uaOamObject object;&lt;BR /&gt;object = nwk;&lt;BR /&gt;In my case I directly pass.&lt;BR /&gt;&lt;BR /&gt;Now let me know about your opinion about that error ? &lt;BR /&gt;&lt;BR /&gt;Thanks in advance.&lt;BR /&gt;-Amit&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Sun, 01 Feb 2009 15:34:16 GMT</pubDate>
    <dc:creator>astra</dc:creator>
    <dc:date>2009-02-01T15:34:16Z</dc:date>
    <item>
      <title>wrong return value.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/wrong-return-value/m-p/4349045#M683950</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;I am using M3UA_oamcmd API for creating network.&lt;BR /&gt;&lt;BR /&gt;//Sample.c&lt;BR /&gt;   int subCnxId;&lt;BR /&gt;        M3uaCmdParms data;&lt;BR /&gt;        M3uaOamAddress address;&lt;BR /&gt;&lt;BR /&gt;        /* Fill the configuration structure */&lt;BR /&gt;        address[0]  = 0 ;&lt;BR /&gt;        data.network.ni = 2 ;&lt;BR /&gt;        data.network.variant = 1 ;&lt;BR /&gt;&lt;BR /&gt;        subCnxId = 1;&lt;BR /&gt;&lt;BR /&gt;        if (M3UA_oamcmd (cnxId,&lt;BR /&gt;                         subCnxId,&lt;BR /&gt;                         0,&lt;BR /&gt;                         0,&lt;BR /&gt;                         nwk,&lt;BR /&gt;                         address,&lt;BR /&gt;                         M3UA_create,&lt;BR /&gt;                         &amp;amp;data&lt;BR /&gt;                         ) == -1 )&lt;BR /&gt;          {&lt;BR /&gt;            printf("ss7errno %d %s\n",&lt;BR /&gt;                   ss7errno,&lt;BR /&gt;                   ss7errno_print(ss7errno));&lt;BR /&gt;            exit(-1);&lt;BR /&gt;          }&lt;BR /&gt;&lt;BR /&gt;but when I am running it is giving ss7error:22&lt;BR /&gt;means&lt;BR /&gt; [EAPIBUSY]      A manual or automatic switchover is  in  progress.             Retry the call later.&lt;BR /&gt;&lt;BR /&gt;Could you tell me why it is happening.&lt;BR /&gt;Or I have to set some value before creating connection.&lt;BR /&gt;&lt;BR /&gt;TIA&lt;BR /&gt;-Amit</description>
      <pubDate>Sun, 01 Feb 2009 10:43:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/wrong-return-value/m-p/4349045#M683950</guid>
      <dc:creator>astra</dc:creator>
      <dc:date>2009-02-01T10:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: wrong return value.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/wrong-return-value/m-p/4349046#M683951</link>
      <description>&lt;!--!*#--&gt;hmm,&lt;BR /&gt;I don't see nwk declared ( and M3uaOamObject ?) &lt;BR /&gt;Is that a simple int (passed by value)&lt;BR /&gt;Or a structure (passed by address)&lt;BR /&gt;&lt;BR /&gt;fwiw,&lt;BR /&gt;Hein&lt;BR /&gt;</description>
      <pubDate>Sun, 01 Feb 2009 13:36:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/wrong-return-value/m-p/4349046#M683951</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2009-02-01T13:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: wrong return value.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/wrong-return-value/m-p/4349047#M683952</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;here command is "M3UA_create" and Object could be { nwk, sg, sgp, ipsp, ss7dpc, local_as,remote_as, lpc } so I just set the value of &lt;BR /&gt;M3uaOamObject object;&lt;BR /&gt;object = nwk;&lt;BR /&gt;In my case I directly pass.&lt;BR /&gt;&lt;BR /&gt;Now let me know about your opinion about that error ? &lt;BR /&gt;&lt;BR /&gt;Thanks in advance.&lt;BR /&gt;-Amit&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 01 Feb 2009 15:34:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/wrong-return-value/m-p/4349047#M683952</guid>
      <dc:creator>astra</dc:creator>
      <dc:date>2009-02-01T15:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: wrong return value.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/wrong-return-value/m-p/4349048#M683953</link>
      <description>My opinion about that error is that the call is made at a wrong time, or with the wrong parameters.&lt;BR /&gt;This is based on nothing more, and nothing less, than your prior link question.&lt;BR /&gt;&lt;BR /&gt;How 'new' is this code? Has it ever worked?&lt;BR /&gt;Has something similar ever worked for you?&lt;BR /&gt;What part is new / different?&lt;BR /&gt;What elements that you pass can you investigate for correctness, perhpas through an inquiry call?&lt;BR /&gt;&lt;BR /&gt;Good luck!&lt;BR /&gt;Hein/&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 01 Feb 2009 16:09:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/wrong-return-value/m-p/4349048#M683953</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2009-02-01T16:09:28Z</dc:date>
    </item>
  </channel>
</rss>

