using System; using System.Collections.Generic; using System.Text; namespace DllEapFileUpload { public interface IEapScoketServer { /// /// 默认IP:当前网络IP 端口:9914 配置文件修改 /// /// 日志记录 /// 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); } }