1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DllEapFileUpload
- {
- public interface IEapScoketServer
- {
- /// <summary>
- /// 默认IP:当前网络IP 端口:9914 配置文件修改
- /// </summary>
- /// <param name="errinfo">日志记录</param>
- /// <returns></returns>
- bool Start(ref string errinfo);
- //bool Start(ScoketEntity se,ref string errinfo);
-
- //void SaveToFile(string savefilepathandname, byte[] files);
- //void DownToFile(string RemoteEndPoint, string downfilepathandname, byte[] files);
- bool Close(ref string errinfo);
-
- }
- }
|