diff options
author | Volker Lendecke <vl@samba.org> | 2010-07-04 18:02:19 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-07-05 11:06:24 +0200 |
commit | 58b9595babebdeb42cd6ffdc2b12e54b46964127 (patch) | |
tree | cd56b21cd69dfc6071a8f14a23d115f33e116238 /source3 | |
parent | 0220246c2683e363d4871c7b93480438a5d88a7a (diff) | |
download | samba-58b9595babebdeb42cd6ffdc2b12e54b46964127.tar.gz samba-58b9595babebdeb42cd6ffdc2b12e54b46964127.tar.bz2 samba-58b9595babebdeb42cd6ffdc2b12e54b46964127.zip |
s3: Add missing prototype for smb2_opcode_name
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/globals.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/smbd/globals.h b/source3/smbd/globals.h index 435936ea0a..43f74628c5 100644 --- a/source3/smbd/globals.h +++ b/source3/smbd/globals.h @@ -245,6 +245,7 @@ void smbd_server_connection_terminate_ex(struct smbd_server_connection *sconn, #define smbd_server_connection_terminate(sconn, reason) \ smbd_server_connection_terminate_ex(sconn, reason, __location__) +const char *smb2_opcode_name(uint16_t opcode); bool smbd_is_smb2_header(const uint8_t *inbuf, size_t size); void reply_smb2002(struct smb_request *req, uint16_t choice); |