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