Removed — replaced by api_collect_domains
This commit is contained in:
parent
3d5d272736
commit
f2082baf74
|
@ -1,29 +0,0 @@
|
||||||
package genericlistener
|
|
||||||
|
|
||||||
//DomainAPI -- Structure to hold the domain tracking for JSON
|
|
||||||
// type DomainAPI struct {
|
|
||||||
// Domain string `json:"domain"`
|
|
||||||
// BytesIn int64 `json:"bytes_in"`
|
|
||||||
// BytesOut int64 `json:"bytes_out"`
|
|
||||||
// }
|
|
||||||
|
|
||||||
// //NewDomainAPI - Constructor
|
|
||||||
// func NewDomainAPI(domain string, bytesin int64, bytesout int64) (d *DomainAPI) {
|
|
||||||
// d = new(DomainAPI)
|
|
||||||
// d.Domain = domain
|
|
||||||
// d.BytesIn = bytesin
|
|
||||||
// d.BytesOut = bytesout
|
|
||||||
// return
|
|
||||||
// }
|
|
||||||
|
|
||||||
// //DomainAPIContainer --
|
|
||||||
// type DomainAPIContainer struct {
|
|
||||||
// Domains []*DomainAPI
|
|
||||||
// }
|
|
||||||
|
|
||||||
// //NewDomainAPIContainer -- Constructor
|
|
||||||
// func NewDomainAPIContainer() (p *DomainAPIContainer) {
|
|
||||||
// p = new(DomainAPIContainer)
|
|
||||||
// p.Domains = make([]*DomainAPI, 0)
|
|
||||||
// return p
|
|
||||||
// }
|
|
Loading…
Reference in New Issue