<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.gcc.cgicc.general">
    <title>gmane.comp.gcc.cgicc.general</title>
    <link>http://blog.gmane.org/gmane.comp.gcc.cgicc.general</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gcc.cgicc.general/383"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gcc.cgicc.general/376"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gcc.cgicc.general/373"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gcc.cgicc.general/371"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gcc.cgicc.general/370"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gcc.cgicc.general/383">
    <title>cgi("name");</title>
    <link>http://comments.gmane.org/gmane.comp.gcc.cgicc.general/383</link>
    <description>&lt;pre&gt;std::string name = cgi("name");
I found it in the tutorial.but i don't understant how it workes.
_______________________________________________
help-cgicc mailing list
help-cgicc&amp;lt; at &amp;gt;gnu.org
https://lists.gnu.org/mailman/listinfo/help-cgicc
&lt;/pre&gt;</description>
    <dc:creator>hang yan</dc:creator>
    <dc:date>2012-03-26T08:56:15</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gcc.cgicc.general/376">
    <title>howto use fcgi-test.cpp?</title>
    <link>http://comments.gmane.org/gmane.comp.gcc.cgicc.general/376</link>
    <description>&lt;pre&gt;Hi,
can someone please tell me how to test the fcgi-test.cpp demo?
What else is needed?
I'm using the nginx webserver.
&lt;/pre&gt;</description>
    <dc:creator>U.Mutlu</dc:creator>
    <dc:date>2012-02-11T00:50:59</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gcc.cgicc.general/373">
    <title>about CgiEnvironment and POSTDATA when usingmultiplexed FastCgi</title>
    <link>http://comments.gmane.org/gmane.comp.gcc.cgicc.general/373</link>
    <description>&lt;pre&gt;In the CgiEnvironment constructor, it looks like it attempts to read all
of stdin.
FastCgi, however, chunks the stdin packets.

1) Is the read function, as defined in a subclass bridging a
multiplexing FastCgi with Cgicc, supposed to block until there
everything can be read, as done in the official FastCgi SDK's
FCGX_GetStr(FCGX_Stream*, char*, int)?
Or use EAGAIN / exceptions and wrap input-&amp;gt;read in a for(;;)?
I'm using another FastCgi class because the fact that I'm threading
the processing means that multiplexing is the way to go to unleash the
performance of parallelism, and FCGX_* is not multiplexing-safe.
Note: the FastCgi instance class basically calls
std::string::append(input_buffer.end(), stdin_data, stdin_len). 
2) Is there an ability to limit the size of POSTDATA by using a function
hook? The non-virtuality of CgiEnvironment implies that implementing
this would require patch &amp;amp;&amp;amp; make &amp;amp;&amp;amp; sudo make install.

Note: I am not on the mailinglist. CC me when needed.
&lt;/pre&gt;</description>
    <dc:creator>Andrey Vul</dc:creator>
    <dc:date>2010-12-21T09:58:20</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gcc.cgicc.general/371">
    <title>Cross building cgicc, getElements() app link error</title>
    <link>http://comments.gmane.org/gmane.comp.gcc.cgicc.general/371</link>
    <description>&lt;pre&gt;Hello,
I built cgicc 3.2.8 using 2009q1 CodeSourcery ARM tools in
OpenEmbedded which built fine.  I was able to build and run the app
code below, but when I enable the getElements() section, I get a
linker error:
  hello.cpp:(.text+0x198): undefined reference to
`cgicc::Cgicc::getElements() const'

, which seems odd since getElements) is defined as inline in
cgicc/Cgicc.h.  I built the same app for x86 using g++ 4.4.1 and it
linked and ran fine.  Not sure if this is an issue with g++ or cgicc,
or can be patched in cgicc.  Anyone see this before?

Thanks!
,
John


int main(int argc, char **argv)
{
    Cgicc cgi;
    cout &amp;lt;&amp;lt; HTTPHTMLHeader() &amp;lt;&amp;lt; endl;
    form_iterator name = cgi.getElement("name");
    //if(name != cgi.getElements().end()) {
    //    cout &amp;lt;&amp;lt; "Your name: " &amp;lt;&amp;lt; **name &amp;lt;&amp;lt; endl;
    //}

    return 0;
}
&lt;/pre&gt;</description>
    <dc:creator>John Faith</dc:creator>
    <dc:date>2010-08-31T17:17:30</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gcc.cgicc.general/370">
    <title>newbie question, help heeded</title>
    <link>http://comments.gmane.org/gmane.comp.gcc.cgicc.general/370</link>
    <description>&lt;pre&gt;_______________________________________________
help-cgicc mailing list
help-cgicc&amp;lt; at &amp;gt;gnu.org
http://lists.gnu.org/mailman/listinfo/help-cgicc
&lt;/pre&gt;</description>
    <dc:creator>Eduard Bareev</dc:creator>
    <dc:date>2009-08-10T14:23:58</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.gcc.cgicc.general">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.gcc.cgicc.general</link>
  </textinput>
</rdf:RDF>

