blob: 977b117957b9894bf2546f60502ab215019ae2b2 [file] [log] [blame]
Juan Lang38fa5ad2003-05-13 03:32:20 +00001/* WINE iprtrmib.h
2 * Copyright (C) 2003 Juan Lang
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
Jonathan Ernst360a3f92006-05-18 14:49:52 +020016 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Juan Lang38fa5ad2003-05-13 03:32:20 +000017 */
18#ifndef WINE_IPRTRMIB_H__
19#define WINE_IPRTRMIB_H__
20
Francois Gouget49b2c3f2007-09-20 21:34:56 +020021#include <mprapi.h>
Juan Lang38fa5ad2003-05-13 03:32:20 +000022#include <ipifcons.h>
23
Francois Gougetcf76be62011-12-13 21:04:41 +010024#include <ipmib.h>
25#include <tcpmib.h>
26#include <udpmib.h>
Juan Lang38fa5ad2003-05-13 03:32:20 +000027
Hans Leidekker895e7a52011-12-19 15:41:48 +010028typedef enum _TCP_TABLE_CLASS
29{
30 TCP_TABLE_BASIC_LISTENER,
31 TCP_TABLE_BASIC_CONNECTIONS,
32 TCP_TABLE_BASIC_ALL,
33 TCP_TABLE_OWNER_PID_LISTENER,
34 TCP_TABLE_OWNER_PID_CONNECTIONS,
35 TCP_TABLE_OWNER_PID_ALL,
36 TCP_TABLE_OWNER_MODULE_LISTENER,
37 TCP_TABLE_OWNER_MODULE_CONNECTIONS,
38 TCP_TABLE_OWNER_MODULE_ALL
39} TCP_TABLE_CLASS, *PTCP_TABLE_CLASS;
40
Hans Leidekker18ba68e2012-09-07 13:35:36 +020041typedef enum _UDP_TABLE_CLASS
42{
43 UDP_TABLE_BASIC,
44 UDP_TABLE_OWNER_PID,
45 UDP_TABLE_OWNER_MODULE
46} UDP_TABLE_CLASS, *PUDP_TABLE_CLASS;
47
Juan Lang38fa5ad2003-05-13 03:32:20 +000048#endif /* WINE_IPRTRMIB_H__ */