You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@trafficserver.apache.org by "Steve Jiang (JIRA)" <ji...@apache.org> on 2010/03/30 01:55:28 UTC

[jira] Created: (TS-283) ts.h does not compile ANSI C due to bool in INKHttpTxnSetHttpRetBody prototype

ts.h does not compile ANSI C due to bool in INKHttpTxnSetHttpRetBody prototype
------------------------------------------------------------------------------

                 Key: TS-283
                 URL: https://issues.apache.org/jira/browse/TS-283
             Project: Traffic Server
          Issue Type: Bug
          Components: InkAPI
            Reporter: Steve Jiang
            Priority: Minor


We should change:

inkapi INKReturnCode INKHttpTxnSetHttpRetBody(INKHttpTxn txnp, const char *body_msg, bool plain_msg); 

to:

inkapi INKReturnCode INKHttpTxnSetHttpRetBody(INKHttpTxn txnp, const char *body_msg, int plain_msg); 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (TS-283) ts.h does not compile ANSI C due to bool in INKHttpTxnSetHttpRetBody prototype

Posted by "Steve Jiang (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TS-283?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Steve Jiang resolved TS-283.
----------------------------

    Resolution: Fixed

yes, it's fixed

> ts.h does not compile ANSI C due to bool in INKHttpTxnSetHttpRetBody prototype
> ------------------------------------------------------------------------------
>
>                 Key: TS-283
>                 URL: https://issues.apache.org/jira/browse/TS-283
>             Project: Traffic Server
>          Issue Type: Bug
>          Components: InkAPI
>            Reporter: Steve Jiang
>            Assignee: Steve Jiang
>            Priority: Minor
>             Fix For: 2.1.0
>
>
> We should change:
> inkapi INKReturnCode INKHttpTxnSetHttpRetBody(INKHttpTxn txnp, const char *body_msg, bool plain_msg); 
> to:
> inkapi INKReturnCode INKHttpTxnSetHttpRetBody(INKHttpTxn txnp, const char *body_msg, int plain_msg); 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Issue Comment Edited: (TS-283) ts.h does not compile ANSI C due to bool in INKHttpTxnSetHttpRetBody prototype

Posted by "Bryan Call (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TS-283?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12862728#action_12862728 ] 

Bryan Call edited comment on TS-283 at 4/30/10 12:08 PM:
---------------------------------------------------------

Should this bug be closed?  The code is checked in and the plugins compile with gcc.

      was (Author: bcall):
    Should this bug be closed?  The code is checked in and the plugin compile with gcc.
  
> ts.h does not compile ANSI C due to bool in INKHttpTxnSetHttpRetBody prototype
> ------------------------------------------------------------------------------
>
>                 Key: TS-283
>                 URL: https://issues.apache.org/jira/browse/TS-283
>             Project: Traffic Server
>          Issue Type: Bug
>          Components: InkAPI
>            Reporter: Steve Jiang
>            Priority: Minor
>             Fix For: 2.1.0
>
>
> We should change:
> inkapi INKReturnCode INKHttpTxnSetHttpRetBody(INKHttpTxn txnp, const char *body_msg, bool plain_msg); 
> to:
> inkapi INKReturnCode INKHttpTxnSetHttpRetBody(INKHttpTxn txnp, const char *body_msg, int plain_msg); 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (TS-283) ts.h does not compile ANSI C due to bool in INKHttpTxnSetHttpRetBody prototype

Posted by "Bryan Call (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TS-283?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12862728#action_12862728 ] 

Bryan Call commented on TS-283:
-------------------------------

Should this bug be closed?  The code is checked in and the plugin compile with gcc.

> ts.h does not compile ANSI C due to bool in INKHttpTxnSetHttpRetBody prototype
> ------------------------------------------------------------------------------
>
>                 Key: TS-283
>                 URL: https://issues.apache.org/jira/browse/TS-283
>             Project: Traffic Server
>          Issue Type: Bug
>          Components: InkAPI
>            Reporter: Steve Jiang
>            Priority: Minor
>             Fix For: 2.1.0
>
>
> We should change:
> inkapi INKReturnCode INKHttpTxnSetHttpRetBody(INKHttpTxn txnp, const char *body_msg, bool plain_msg); 
> to:
> inkapi INKReturnCode INKHttpTxnSetHttpRetBody(INKHttpTxn txnp, const char *body_msg, int plain_msg); 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (TS-283) ts.h does not compile ANSI C due to bool in INKHttpTxnSetHttpRetBody prototype

Posted by "Leif Hedstrom (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TS-283?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Leif Hedstrom updated TS-283:
-----------------------------

    Fix Version/s: 2.1.0

> ts.h does not compile ANSI C due to bool in INKHttpTxnSetHttpRetBody prototype
> ------------------------------------------------------------------------------
>
>                 Key: TS-283
>                 URL: https://issues.apache.org/jira/browse/TS-283
>             Project: Traffic Server
>          Issue Type: Bug
>          Components: InkAPI
>            Reporter: Steve Jiang
>            Priority: Minor
>             Fix For: 2.1.0
>
>
> We should change:
> inkapi INKReturnCode INKHttpTxnSetHttpRetBody(INKHttpTxn txnp, const char *body_msg, bool plain_msg); 
> to:
> inkapi INKReturnCode INKHttpTxnSetHttpRetBody(INKHttpTxn txnp, const char *body_msg, int plain_msg); 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Assigned: (TS-283) ts.h does not compile ANSI C due to bool in INKHttpTxnSetHttpRetBody prototype

Posted by "Bryan Call (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TS-283?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Bryan Call reassigned TS-283:
-----------------------------

    Assignee: Steve Jiang

> ts.h does not compile ANSI C due to bool in INKHttpTxnSetHttpRetBody prototype
> ------------------------------------------------------------------------------
>
>                 Key: TS-283
>                 URL: https://issues.apache.org/jira/browse/TS-283
>             Project: Traffic Server
>          Issue Type: Bug
>          Components: InkAPI
>            Reporter: Steve Jiang
>            Assignee: Steve Jiang
>            Priority: Minor
>             Fix For: 2.1.0
>
>
> We should change:
> inkapi INKReturnCode INKHttpTxnSetHttpRetBody(INKHttpTxn txnp, const char *body_msg, bool plain_msg); 
> to:
> inkapi INKReturnCode INKHttpTxnSetHttpRetBody(INKHttpTxn txnp, const char *body_msg, int plain_msg); 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.