mirror of
https://github.com/samba-team/samba.git
synced 2025-02-05 21:57:51 +03:00
61 lines
2.8 KiB
C
61 lines
2.8 KiB
C
int reply_special(char *inbuf,char *outbuf);
|
|
int reply_corep(char *outbuf);
|
|
int reply_coreplus(char *outbuf);
|
|
int reply_nt1(char *outbuf);
|
|
int reply_lanman1(char *outbuf);
|
|
int reply_lanman2(char *outbuf);
|
|
int reply_tcon(char *inbuf,char *outbuf);
|
|
int reply_tcon_and_X(char *inbuf,char *outbuf,int length,int bufsize);
|
|
int reply_unknown(char *inbuf,char *outbuf);
|
|
int reply_ioctl(char *inbuf,char *outbuf);
|
|
int reply_sesssetup_and_X(char *inbuf,char *outbuf,int length,int bufsize);
|
|
int reply_chkpth(char *inbuf,char *outbuf);
|
|
int reply_getatr(char *inbuf,char *outbuf);
|
|
int reply_setatr(char *inbuf,char *outbuf);
|
|
int reply_dskattr(char *inbuf,char *outbuf);
|
|
int reply_search(char *inbuf,char *outbuf);
|
|
int reply_fclose(char *inbuf,char *outbuf);
|
|
int reply_open(char *inbuf,char *outbuf);
|
|
int reply_open_and_X(char *inbuf,char *outbuf,int length,int bufsize);
|
|
int reply_ulogoffX(char *inbuf,char *outbuf,int length,int bufsize);
|
|
int reply_mknew(char *inbuf,char *outbuf);
|
|
int reply_ctemp(char *inbuf,char *outbuf);
|
|
int reply_unlink(char *inbuf,char *outbuf);
|
|
int reply_readbraw(char *inbuf, char *outbuf);
|
|
int reply_lockread(char *inbuf,char *outbuf);
|
|
int reply_read(char *inbuf,char *outbuf);
|
|
int reply_read_and_X(char *inbuf,char *outbuf,int length,int bufsize);
|
|
int reply_writebraw(char *inbuf,char *outbuf);
|
|
int reply_writeunlock(char *inbuf,char *outbuf);
|
|
int reply_write(char *inbuf,char *outbuf,int dum1,int dum2);
|
|
int reply_write_and_X(char *inbuf,char *outbuf,int length,int bufsize);
|
|
int reply_lseek(char *inbuf,char *outbuf);
|
|
int reply_flush(char *inbuf,char *outbuf);
|
|
int reply_exit(char *inbuf,char *outbuf);
|
|
int reply_close(char *inbuf,char *outbuf);
|
|
int reply_writeclose(char *inbuf,char *outbuf);
|
|
int reply_lock(char *inbuf,char *outbuf);
|
|
int reply_unlock(char *inbuf,char *outbuf);
|
|
int reply_tdis(char *inbuf,char *outbuf);
|
|
int reply_echo(char *inbuf,char *outbuf);
|
|
int reply_printopen(char *inbuf,char *outbuf);
|
|
int reply_printclose(char *inbuf,char *outbuf);
|
|
int reply_printqueue(char *inbuf,char *outbuf);
|
|
int reply_printwrite(char *inbuf,char *outbuf);
|
|
int reply_mkdir(char *inbuf,char *outbuf);
|
|
int reply_rmdir(char *inbuf,char *outbuf);
|
|
int reply_mv(char *inbuf,char *outbuf);
|
|
int reply_copy(char *inbuf,char *outbuf);
|
|
int reply_setdir(char *inbuf,char *outbuf);
|
|
int reply_lockingX(char *inbuf,char *outbuf,int length,int bufsize);
|
|
int reply_readbmpx(char *inbuf,char *outbuf,int length,int bufsize);
|
|
int reply_writebmpx(char *inbuf,char *outbuf);
|
|
int reply_setattrE(char *inbuf,char *outbuf);
|
|
int reply_getattrE(char *inbuf,char *outbuf);
|
|
int reply_writebs(char *inbuf,char *outbuf);
|
|
int reply_sends(char *inbuf,char *outbuf);
|
|
int reply_sendstrt(char *inbuf,char *outbuf);
|
|
int reply_sendend(char *inbuf,char *outbuf);
|
|
int reply_sendtxt(char *inbuf,char *outbuf);
|
|
int reply_transs2(char *inbuf,char *outbuf,int length,int bufsize);
|