Go to main content

man pages section 3: Library Interfaces and Headers

Exit Print View

Updated: Wednesday, July 27, 2022
 
 

ne_status (3)

Name

ne_status - HTTP status structure

Synopsis

#include <ne_utils.h>

typedef struct {
int major_version, minor_version;
int code, klass;
const char *reason_phrase;
} ne_status;

Description

NE_STATUS(3)                  neon API reference                  NE_STATUS(3)



NAME
       ne_status - HTTP status structure

SYNOPSIS
       #include <ne_utils.h>

       typedef struct {
           int major_version, minor_version;
           int code, klass;
           const char *reason_phrase;
       } ne_status;

DESCRIPTION
       An ne_status type represents an HTTP response status; used in response
       messages giving a result of request. The major_version and
       minor_version fields give the HTTP version supported by the server
       issuing the response. The code field gives the status code of the
       result (lying between 100 and 999 inclusive), and the klass field gives
       the class[1], which is equal to the most significant digit of the
       status.

       There are five classes of HTTP status code defined by RFC2616:

       1xx
           Informational response.

       2xx
           Success: the operation was successful

       3xx
           Redirection

       4xx
           Client error: the request made was incorrect in some manner.

       5xx
           Server error


ATTRIBUTES
       See attributes(7) for descriptions of the following attributes:


       +---------------+------------------+
       |ATTRIBUTE TYPE | ATTRIBUTE VALUE  |
       +---------------+------------------+
       |Availability   | library/neon     |
       +---------------+------------------+
       |Stability      | Volatile         |
       +---------------+------------------+

SEE ALSO
       ne_get_status.

AUTHOR
       Joe Orton <neon@lists.manyfish.co.uk>
           Author.

COPYRIGHT
NOTES
        1. the field is named "klass" not "class" so that the header can be
           used from a C++ program, in which "class" is a reserved word)



           Source code for open source software components in Oracle Solaris
           can be found at
           https://www.oracle.com/downloads/opensource/solaris-source-code-
           downloads.html.

           This software was built from source available at
           https://github.com/oracle/solaris-userland.  The original community
           source was downloaded from
           http://www.webdav.org/neon/neon-0.30.1.tar.gz.

           Further information about this software can be found on the open
           source community website at http://www.webdav.org/neon/.



neon 0.30.1                    23 September 2014                  NE_STATUS(3)