Skip to content

Commit 01af232

Browse files
committed
Updates to the audit output callback to include the session and open file id details
1 parent a380970 commit 01af232

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/main/java/org/filesys/smb/server/ProtocolHandler.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,9 +372,11 @@ public VirtualCircuitList createVirtualCircuitList(int maxVC) {
372372
* Output an audit log record to the audit log
373373
*
374374
* @param auditTyp AuditType
375+
* @param sess SrvSession
375376
* @param client ClientInfo
377+
* @param fileId int
376378
* @param detail String
377379
*/
378-
public void auditPrintln(AuditType auditTyp, ClientInfo client, String detail) {
380+
public void auditPrintln(AuditType auditTyp, SrvSession<?> sess, ClientInfo client, int fileId, String detail) {
379381
}
380382
}

0 commit comments

Comments
 (0)