Qpid Proton C API 0.39.0
 
Loading...
Searching...
No Matches
cid.h
1#ifndef PROTON_CID_H
2#define PROTON_CID_H 1
3
4/*
5 *
6 * Licensed to the Apache Software Foundation (ASF) under one
7 * or more contributor license agreements. See the NOTICE file
8 * distributed with this work for additional information
9 * regarding copyright ownership. The ASF licenses this file
10 * to you under the Apache License, Version 2.0 (the
11 * "License"); you may not use this file except in compliance
12 * with the License. You may obtain a copy of the License at
13 *
14 * http://www.apache.org/licenses/LICENSE-2.0
15 *
16 * Unless required by applicable law or agreed to in writing,
17 * software distributed under the License is distributed on an
18 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
19 * KIND, either express or implied. See the License for the
20 * specific language governing permissions and limitations
21 * under the License.
22 *
23 */
24
29typedef enum {
30 CID_pn_object = 1,
31 CID_pn_void,
32 CID_pn_weakref,
33
34 CID_pn_string,
35 CID_pn_list,
36 CID_pn_map,
37 CID_pn_hash,
38 CID_pn_record,
39
40 CID_pn_collector,
41 CID_pn_event,
42
43 CID_pn_buffer,
44 CID_pn_error,
45 CID_pn_data,
46
47 CID_pn_connection,
48 CID_pn_session,
49 CID_pn_link,
50 CID_pn_delivery,
51 CID_pn_transport,
52
53 CID_pn_message,
54
55 CID_pn_reactor,
56 CID_pn_handler,
57 CID_pn_timer,
58 CID_pn_task,
59
60 CID_pn_io,
61 CID_pn_selector,
62 CID_pn_selectable,
63
64 CID_pn_url,
65 CID_pn_strdup,
66
67 CID_pn_listener,
68 CID_pn_proactor,
69
70 CID_pn_listener_socket,
71 CID_pn_raw_connection
72} pn_cid_t;
73
78#endif /* cid.h */