Changeset b8bb4c5
- Timestamp:
- 12/15/05 14:04:59 (17 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, getfragoff, help, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- d56089a
- Parents:
- 7c9b99b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/libtrace.h
r3b8a5ef rb8bb4c5 328 328 * and trace_errno is set. Use trace_perror() to get more information 329 329 */ 330 struct libtrace_out_t *trace_ output_create(const char *uri);330 struct libtrace_out_t *trace_create_output(const char *uri); 331 331 332 332 /** Parses an output options string and calls the appropriate function to deal with output options. … … 338 338 * @author Shane Alcock 339 339 */ 340 int trace_ output_config(struct libtrace_out_t *libtrace, char *options);340 int trace_config_output(struct libtrace_out_t *libtrace, char *options); 341 341 342 342 /** Close a trace file, freeing up any resources it may have been using … … 356 356 * @author Shane Alcock 357 357 */ 358 void trace_ output_destroy(struct libtrace_out_t *trace);358 void trace_destroy_output(struct libtrace_out_t *trace); 359 359 360 360 /** Create a new packet object … … 362 362 * @return a pointer to an initialised libtrace_packet_t object 363 363 */ 364 struct libtrace_packet_t *trace_ packet_create();364 struct libtrace_packet_t *trace_create_packet(); 365 365 366 366 /** Destroy a packet object … … 368 368 * sideeffect: sets packet to NULL 369 369 */ 370 void trace_ packet_destroy(struct libtrace_packet_t **packet);370 void trace_destroy_packet(struct libtrace_packet_t **packet); 371 371 372 372
Note: See TracChangeset
for help on using the changeset viewer.