diff options
author | Jim McDonough <jmcd@samba.org> | 2003-10-20 18:35:12 +0000 |
---|---|---|
committer | Jim McDonough <jmcd@samba.org> | 2003-10-20 18:35:12 +0000 |
commit | 2cfb3e9b7046fe2db330a292aed71f1c27688a16 (patch) | |
tree | ca25dec3cf9b20a690ee22b9f8701e45ab306906 /source3/include | |
parent | f3121b19e4a4951350342a1882c9017686a995b1 (diff) | |
download | samba-2cfb3e9b7046fe2db330a292aed71f1c27688a16.tar.gz samba-2cfb3e9b7046fe2db330a292aed71f1c27688a16.tar.bz2 samba-2cfb3e9b7046fe2db330a292aed71f1c27688a16.zip |
Several updates:
- add support for named pipe and netbios queries in parse code
- fix map request structure...unknown byte was alignment
- add sample of named pipe over netbios query in rpcclient (comment only)
(This used to be commit 71dcdf54e60204d6b499d25d8759ed20fc7a021a)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/rpc_epmapper.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/include/rpc_epmapper.h b/source3/include/rpc_epmapper.h index 57ac8e2522..1b5b6b1876 100644 --- a/source3/include/rpc_epmapper.h +++ b/source3/include/rpc_epmapper.h @@ -30,7 +30,8 @@ #define EPM_FLOOR_RPC 0x0b /* tower is for connection-oriented rpc */ #define EPM_FLOOR_TCP 0x07 /* floor contains tcp port number */ #define EPM_FLOOR_IP 0x09 /* floor contains IP address */ -#define EPM_FLOOR_NMPIPES 0x10 /* floor contains remote named pipe name */ +#define EPM_FLOOR_NMPIPES 0x0f /* floor contains remote named pipe name */ +#define EPM_FLOOR_LRPC 0x10 /* floor contains local named pipe name */ #define EPM_FLOOR_NETBIOS 0x11 /* floor contains netbios address */ #define EPM_FLOOR_NETBEUI 0x12 /* floor contains netbeui address */ #define EPM_FLOOR_SOCKET 0x20 @@ -63,6 +64,7 @@ typedef struct struct { uint8 addr[4]; } ip; + char string[MAXHOSTNAMELEN+3]; /* hostname + \\ + null term */ } rhs; } EPM_FLOOR; |