IEapScoketServer.cs 679 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace DllEapFileUpload
  5. {
  6. public interface IEapScoketServer
  7. {
  8. /// <summary>
  9. /// 默认IP:当前网络IP 端口:9914 配置文件修改
  10. /// </summary>
  11. /// <param name="errinfo">日志记录</param>
  12. /// <returns></returns>
  13. bool Start(ref string errinfo);
  14. //bool Start(ScoketEntity se,ref string errinfo);
  15. //void SaveToFile(string savefilepathandname, byte[] files);
  16. //void DownToFile(string RemoteEndPoint, string downfilepathandname, byte[] files);
  17. bool Close(ref string errinfo);
  18. }
  19. }