Juan Lang | 38fa5ad | 2003-05-13 03:32:20 +0000 | [diff] [blame] | 1 | /* 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 Ernst | 360a3f9 | 2006-05-18 14:49:52 +0200 | [diff] [blame] | 16 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
Juan Lang | 38fa5ad | 2003-05-13 03:32:20 +0000 | [diff] [blame] | 17 | */ |
| 18 | #ifndef WINE_IPRTRMIB_H__ |
| 19 | #define WINE_IPRTRMIB_H__ |
| 20 | |
Francois Gouget | 49b2c3f | 2007-09-20 21:34:56 +0200 | [diff] [blame] | 21 | #include <mprapi.h> |
Juan Lang | 38fa5ad | 2003-05-13 03:32:20 +0000 | [diff] [blame] | 22 | #include <ipifcons.h> |
| 23 | |
Francois Gouget | cf76be6 | 2011-12-13 21:04:41 +0100 | [diff] [blame] | 24 | #include <ipmib.h> |
| 25 | #include <tcpmib.h> |
| 26 | #include <udpmib.h> |
Juan Lang | 38fa5ad | 2003-05-13 03:32:20 +0000 | [diff] [blame] | 27 | |
Hans Leidekker | 895e7a5 | 2011-12-19 15:41:48 +0100 | [diff] [blame] | 28 | typedef 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 Leidekker | 18ba68e | 2012-09-07 13:35:36 +0200 | [diff] [blame] | 41 | typedef 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 Lang | 38fa5ad | 2003-05-13 03:32:20 +0000 | [diff] [blame] | 48 | #endif /* WINE_IPRTRMIB_H__ */ |