Changeset 3913 in Sophya for trunk/AddOn/TAcq/racqueth.h
- Timestamp:
- Nov 26, 2010, 2:45:39 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/AddOn/TAcq/racqueth.h
r3911 r3913 51 51 class PCIEToEthernet : public ZThread { 52 52 public: 53 PCIEToEthernet(vector<PCIEWrapperInterface*> vec_pciw , vector<string>& destname, BRParList const& par, int portid=BRSPORTID); 53 // Specification de destinations : nom_de_machine ou numero IP (192.168.55.2 ...) 54 // Meme series de destination pour toutes les fibres (DMA) 55 PCIEToEthernet(vector<PCIEWrapperInterface*> vec_pciw, vector<string>& destname, BRParList const& par, int portid=BRSPORTID); 56 // Une serie de destinations pour chaque fibres 57 PCIEToEthernet(vector<PCIEWrapperInterface*> vec_pciw, vector< vector<string> >& destname, BRParList const& par, int portid=BRSPORTID); 54 58 virtual ~PCIEToEthernet(); 55 59 virtual void run(); … … 61 65 62 66 protected: 67 virtual void InitConnections(); 63 68 virtual size_t SendToTargets(int fib, Byte* data, size_t len, bool fgfin=false); 64 69 virtual void CleanUpEndSendAllLinks(); … … 71 76 unsigned int sizeFr_ ; 72 77 vector<PCIEWrapperInterface *> vec_pciw_; 73 vector< string> destname_;78 vector< vector<string> > destname_; 74 79 int tcpportid_; 75 80 vector< vector<ClientSocket> > vvec_skt_;
Note:
See TracChangeset
for help on using the changeset viewer.