netdev-dpdk: fix mbuf leaks
[cascardo/ovs.git] / lib / stream-fd.h
1 /*
2  * Copyright (c) 2008, 2009, 2012, 2014, 2015 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  * Note on windows platform, stream fd can only handle sockets, on unix any
17  * fd is acceptable.
18  */
19
20 #ifndef STREAM_FD_H
21 #define STREAM_FD_H 1
22
23 #include <stdbool.h>
24 #include <stddef.h>
25 #include <stdint.h>
26
27 struct stream;
28 struct pstream;
29 struct sockaddr_storage;
30
31 int new_fd_stream(const char *name, int fd, int connect_status,
32                   int fd_type, struct stream **streamp);
33 int new_fd_pstream(const char *name, int fd,
34                    int (*accept_cb)(int fd, const struct sockaddr_storage *ss,
35                                     size_t ss_len, struct stream **),
36                    char *unlink_path,
37                    struct pstream **pstreamp);
38
39 #endif /* stream-fd.h */