aboutsummaryrefslogtreecommitdiffstats
path: root/epan/addr_resolv.c
Commit message (Expand)AuthorAgeFilesLines
* New functions: str_to_ip6(), str_to_ip()Jakub Zawadzki2013-12-211-4/+16
* bytes_to_hexstr_punct() does not add a null terminator, so we must addGuy Harris2013-12-201-1/+4
* Fix [-Wmissing-prototypes]Anders Broman2013-12-201-1/+1
* Add bytestring_to_str() which takes a wmem scope and is otherwise identical toEvan Huus2013-12-191-1/+2
* Rename a couple of to_str functions to have ep_ in the name. This makes itEvan Huus2013-12-191-1/+1
* Move the epan/filesystem.c routines to wsutil; they're not specific toGuy Harris2013-11-171-1/+1
* include <wsutil/pint.h> only when needed.Jakub Zawadzki2013-11-091-0/+1
* g_slist_free_full() is glib 2.28Anders Broman2013-10-231-17/+38
* Make manual address resolution work again by putting the addressesAnders Broman2013-10-231-33/+100
* Flag the addresses used in the trace which has been resolved and only add tho...Anders Broman2013-10-101-27/+32
* Invert NEED_INET_ATON_H to HAVE_INET_ATON_HJörg Mayer2013-10-051-1/+1
* Fix some typos, indentation. Don't try to write the NRB if the pointer to ourEvan Huus2013-09-221-3/+3
* Fix -Wshadow, indentationEvan Huus2013-09-221-15/+15
* Get rid of struct addrinfo, use the hastables for name resolution instead.Anders Broman2013-09-221-81/+38
* Don't call gethostbyaddr() we have already read the local hosts file, settle ...Anders Broman2013-09-171-30/+0
* Read the local services file.Anders Broman2013-09-161-0/+24
* Don't call getservbyport() on unresolved ports - it's expensive.Anders Broman2013-09-161-30/+8
* Revert revision=51577.Anders Broman2013-08-291-11/+19
* Don't store address in the hastable when name resolution is off.Anders Broman2013-08-291-19/+11
* Clean-up ipxnet hash table in host_name_lookup_cleanup. Should fix the buildbotEvan Huus2013-08-201-0/+5
* Fix for Jörg Mayer2013-08-201-0/+5
* Mark an unused parameter.Anders Broman2013-08-201-1/+1
* Use g_hash_table() for ipxnet name resolution.Anders Broman2013-08-201-41/+41
* Use g_hastable() for IPv6 name reslution.Anders Broman2013-08-181-61/+80
* Split the code to convert an ethernet address into an int64 into a functionEvan Huus2013-08-151-50/+24
* Free the old name before we add the new one in case the services file hasEvan Huus2013-08-151-0/+4
* Fix name resolution tests:Evan Huus2013-08-131-12/+12
* Move initalisation of IPv4 hastable to the host_name_lookup_init() rotine.Anders Broman2013-08-121-17/+8
* Use g_hashtable for IPv4 name resolution.Anders Broman2013-08-111-53/+70
* Modelines and consistent indentation.Evan Huus2013-08-111-2103/+2127
* Fix 130KB of leaked memory exposed (or caused?) by the conversion to glib hashEvan Huus2013-08-111-1/+15
* Don't call eth_addr_resolve() unconditionally.Anders Broman2013-08-081-1/+3
* Ensure we have both _initialize() and a corresponding _cleanup() routines forJeff Morriss2013-08-071-273/+233
* Store the port number as a string for the unresolved ports to avoid repeated ...Anders Broman2013-08-061-28/+30
* Make sure serv_proto is set to the appropriate string value in allGuy Harris2013-08-051-61/+72
* it's and, not or ;-)Martin Kaiser2013-08-051-1/+1
* Try to make the OSX build bot happy.Anders Broman2013-08-051-0/+3
* Use a hastable for port resolution. Currently one table for the 4 protocols w...Anders Broman2013-08-051-120/+137
* Ensure eth_hashtable exists when doing a lookup. Not sure I'm running into t...Michael Mann2013-08-041-3/+11
* Add some casts to keep C++ happy.Jeff Morriss2013-08-021-3/+5
* g_int64_equal() and g_int64_hash() exist *after* glib 2.22, not before.Jeff Morriss2013-08-021-1/+1
* - Use a hashtable for eth lookup.Anders Broman2013-08-021-47/+100
* g_int64_hash() and g_int64_equal() first appear in GLib 2.22, make a local copy.Anders Broman2013-08-021-0/+45
* Squelch a warning by explicitly casting to throw away the upper 32 bitsGuy Harris2013-08-011-2/+2
* remove unused function hash_eth_wka()Martin Kaiser2013-08-011-39/+0
* Use glibs hastables rather than home grown variants for manuf an wka(well kno...Anders Broman2013-08-011-162/+177
* "man inet_pton" only says that it returns a negative value, zero or a postive...Chris Maynard2013-07-161-8/+8
* Move report_err.{h,c} from epan into wsutil: there's nothing epan-specific th...Jeff Morriss2013-07-151-2/+3
* Move bitmask array from ipv4_addr_set_netmask_bits() to ip_get_subnet_mask() Jakub Zawadzki2013-07-121-62/+2
* Add some comments around looking up names for port numbers.Martin Mathieson2013-06-161-1/+8