Blame modules/http2/h2_bucket_eos.h

Packit 90a5c9
/* Licensed to the Apache Software Foundation (ASF) under one or more
Packit 90a5c9
 * contributor license agreements.  See the NOTICE file distributed with
Packit 90a5c9
 * this work for additional information regarding copyright ownership.
Packit 90a5c9
 * The ASF licenses this file to You under the Apache License, Version 2.0
Packit 90a5c9
 * (the "License"); you may not use this file except in compliance with
Packit 90a5c9
 * the License.  You may obtain a copy of the License at
Packit 90a5c9
 *
Packit 90a5c9
 *     http://www.apache.org/licenses/LICENSE-2.0
Packit 90a5c9
 *
Packit 90a5c9
 * Unless required by applicable law or agreed to in writing, software
Packit 90a5c9
 * distributed under the License is distributed on an "AS IS" BASIS,
Packit 90a5c9
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Packit 90a5c9
 * See the License for the specific language governing permissions and
Packit 90a5c9
 * limitations under the License.
Packit 90a5c9
 */
Packit 90a5c9
Packit 90a5c9
#ifndef mod_http2_h2_bucket_stream_eos_h
Packit 90a5c9
#define mod_http2_h2_bucket_stream_eos_h
Packit 90a5c9
Packit 90a5c9
struct h2_stream;
Packit 90a5c9
Packit 90a5c9
/** End Of HTTP/2 STREAM (H2EOS) bucket */
Packit 90a5c9
extern const apr_bucket_type_t h2_bucket_type_eos;
Packit 90a5c9
Packit 90a5c9
#define H2_BUCKET_IS_H2EOS(e)     (e->type == &h2_bucket_type_eos)
Packit 90a5c9
Packit 90a5c9
apr_bucket *h2_bucket_eos_make(apr_bucket *b, struct h2_stream *stream);
Packit 90a5c9
Packit 90a5c9
apr_bucket *h2_bucket_eos_create(apr_bucket_alloc_t *list, 
Packit 90a5c9
                                 struct h2_stream *stream);
Packit 90a5c9
Packit 90a5c9
#endif /* mod_http2_h2_bucket_stream_eos_h */